2024-02-21 21:01:05 -05:00
|
|
|
<?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-openapi</artifactId>
|
|
|
|
<name>spring-boot-openapi</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<description>OpenAPI Generator module</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>
|
2024-02-24 15:34:23 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2024-02-21 21:01:05 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.validation</groupId>
|
|
|
|
<artifactId>validation-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.swagger.core.v3</groupId>
|
|
|
|
<artifactId>swagger-annotations</artifactId>
|
|
|
|
<version>${swagger-annotations.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<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/api/quotes.yaml</inputSpec>
|
|
|
|
<generatorName>spring</generatorName>
|
|
|
|
<supportingFilesToGenerate>ApiUtil.java</supportingFilesToGenerate>
|
2024-02-25 17:40:57 -05:00
|
|
|
<templateResourcePath>${project.basedir}/src/main/resources/templates/JavaSpring</templateResourcePath>
|
2024-02-24 15:34:23 -05:00
|
|
|
<globalProperties>
|
|
|
|
<debugOpenAPI>true</debugOpenAPI>
|
|
|
|
</globalProperties>
|
2024-02-21 21:01:05 -05:00
|
|
|
<configOptions>
|
2024-02-24 15:34:23 -05:00
|
|
|
<dateLibrary>java8</dateLibrary>
|
2024-02-21 21:01:05 -05:00
|
|
|
<openApiNullable>false</openApiNullable>
|
|
|
|
<delegatePattern>true</delegatePattern>
|
|
|
|
<apiPackage>com.baeldung.tutorials.openapi.quotes.api</apiPackage>
|
|
|
|
<modelPackage>com.baeldung.tutorials.openapi.quotes.api.model</modelPackage>
|
|
|
|
<documentationProvider>source</documentationProvider>
|
|
|
|
</configOptions>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<openapi-generator.version>7.3.0</openapi-generator.version>
|
|
|
|
<swagger-annotations.version>2.2.20</swagger-annotations.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|