* JAVA-21460 Upgrade spring-boot-swagger-jwt modules to use SpringDoc in place of SpringFox * JAVA-21460 Upgrade spring-boot-swagger-2 module to use SpringDoc in place of SpringFox * JAVA-21460 Upgrade spring-boot-swagger module to use SpringDoc in place of SpringFox * JAVA-21460 Move code from spring-boot-swagger & spring-boot-swagger-2 to spring-boot-swagger-springfox module * JAVA-21457 Upgrade spring-security-web-rest to use SpringDoc in place of SpringFox
		
			
				
	
	
		
			144 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			144 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <project xmlns="http://maven.apache.org/POM/4.0.0"
 | |
|     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | |
|     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
|     <artifactId>spring-boot-swagger-2</artifactId>
 | |
|     <version>0.1.0-SNAPSHOT</version>
 | |
|     <name>spring-boot-swagger-2</name>
 | |
|     <packaging>jar</packaging>
 | |
|     <description>Module For Spring Boot Swagger</description>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung.spring-boot-modules</groupId>
 | |
|         <artifactId>spring-boot-modules</artifactId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-web</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-validation</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springdoc</groupId>
 | |
|             <artifactId>springdoc-openapi-ui</artifactId>
 | |
|             <version>${springdoc.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>io.springfox</groupId>
 | |
|             <artifactId>springfox-oas</artifactId>
 | |
|             <version>${springfox.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>javax.validation</groupId>
 | |
|             <artifactId>validation-api</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>io.springfox</groupId>
 | |
|             <artifactId>springfox-swagger2</artifactId>
 | |
|             <version>${springfox.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>io.swagger.codegen.v3</groupId>
 | |
|                 <artifactId>swagger-codegen-maven-plugin</artifactId>
 | |
|                 <version>${swagger-codegen-maven-plugin.version}</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <id>two-responses</id>
 | |
|                         <goals>
 | |
|                             <goal>generate</goal>
 | |
|                         </goals>
 | |
|                         <configuration>
 | |
|                             <inputSpec>${project.basedir}/src/main/resources/static/api_3.yaml</inputSpec>
 | |
|                             <language>spring</language>
 | |
|                             <configOptions>
 | |
|                                 <java8>true</java8>
 | |
|                                 <interfaceOnly>true</interfaceOnly>
 | |
|                             </configOptions>
 | |
|                         </configuration>
 | |
|                     </execution>
 | |
|                     <execution>
 | |
|                         <id>dates</id>
 | |
|                         <goals>
 | |
|                             <goal>generate</goal>
 | |
|                         </goals>
 | |
|                         <configuration>
 | |
|                             <inputSpec>${project.basedir}/src/main/resources/static/event.yaml</inputSpec>
 | |
|                             <language>spring</language>
 | |
|                             <configOptions>
 | |
|                                 <java8>true</java8>
 | |
|                                 <dateLibrary>custom</dateLibrary>
 | |
|                             </configOptions>
 | |
|                             <typeMappings>
 | |
|                                 <typeMapping>DateTime=Instant</typeMapping>
 | |
|                                 <typeMapping>Date=Date</typeMapping>
 | |
|                             </typeMappings>
 | |
|                             <importMappings>
 | |
|                                 <importMapping>Instant=java.time.Instant</importMapping>
 | |
|                                 <importMapping>Date=java.util.Date</importMapping>
 | |
|                             </importMappings>
 | |
|                         </configuration>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.openapitools</groupId>
 | |
|                 <artifactId>openapi-generator-maven-plugin</artifactId>
 | |
|                 <version>${openapi-generator.version}</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <goals>
 | |
|                             <goal>generate</goal>
 | |
|                         </goals>
 | |
|                         <configuration>
 | |
|                             <skipValidateSpec>true</skipValidateSpec>
 | |
|                             <inputSpec>${project.basedir}/src/main/resources/static/event.yaml</inputSpec>
 | |
|                             <inputSpec>${project.basedir}/src/main/resources/static/account_api_description.yaml</inputSpec>
 | |
|                             <generatorName>spring</generatorName>
 | |
|                             <configOptions>
 | |
|                                 <java8>true</java8>
 | |
|                                 <dateLibrary>custom</dateLibrary>
 | |
|                                 <openApiNullable>false</openApiNullable>
 | |
|                                 <interfaceOnly>true</interfaceOnly>
 | |
|                             </configOptions>
 | |
|                             <typeMappings>
 | |
|                                 <typeMapping>DateTime=Instant</typeMapping>
 | |
|                                 <typeMapping>Date=Date</typeMapping>
 | |
|                             </typeMappings>
 | |
|                             <importMappings>
 | |
|                                 <importMapping>Instant=java.time.Instant</importMapping>
 | |
|                                 <importMapping>Date=java.util.Date</importMapping>
 | |
|                             </importMappings>
 | |
|                         </configuration>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.springframework.boot</groupId>
 | |
|                 <artifactId>spring-boot-maven-plugin</artifactId>
 | |
|                 <configuration>
 | |
|                     <mainClass>${start-class}</mainClass>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <openapi-generator.version>6.2.1</openapi-generator.version>
 | |
|         <springfox.version>3.0.0</springfox.version>
 | |
|         <swagger-codegen-maven-plugin.version>3.0.34</swagger-codegen-maven-plugin.version>
 | |
|         <springdoc.version>1.6.10</springdoc.version>
 | |
|         <swagger-maven-plugin.version>3.1.1</swagger-maven-plugin.version>
 | |
|         <start-class>com.baeldung.tworesponses.Application</start-class>
 | |
|     </properties>
 | |
| 
 | |
| </project> |