99 lines
4.1 KiB
XML
99 lines
4.1 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.example</groupId>
|
|
<artifactId>custom-validations-opeanpi-codegen</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>custom-validations-opeanpi-codegen</name>
|
|
<description>Demo project for Swagger Custom Validations Codegen</description>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>spring-swagger-codegen</artifactId>
|
|
<version>0.0.1-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-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openapitools</groupId>
|
|
<artifactId>openapi-generator</artifactId>
|
|
<version>${openapi-generator.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-ui</artifactId>
|
|
<version>${springdoc.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openapitools</groupId>
|
|
<artifactId>jackson-databind-nullable</artifactId>
|
|
<version>${jackson-databind-nullable.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.openapitools</groupId>
|
|
<artifactId>openapi-generator-maven-plugin</artifactId>
|
|
<version>${openapi-generator-maven-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>generate</goal>
|
|
</goals>
|
|
<configuration>
|
|
<inputSpec>
|
|
${project.basedir}/src/main/resources/petstore.yml
|
|
</inputSpec>
|
|
<generatorName>spring</generatorName>
|
|
<apiPackage>com.baeldung.openapi.api</apiPackage>
|
|
<modelPackage>com.baeldung.openapi.model</modelPackage>
|
|
<supportingFilesToGenerate>
|
|
ApiUtil.java
|
|
</supportingFilesToGenerate>
|
|
<configOptions>
|
|
<delegatePattern>false</delegatePattern>
|
|
<dateLibrary>java8-localdatetime</dateLibrary>
|
|
</configOptions>
|
|
<templateDirectory>
|
|
src/main/resources/openapi/templates
|
|
</templateDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<springfox-version>3.0.0</springfox-version>
|
|
<log4j2.version>2.17.1</log4j2.version>
|
|
<springdoc.version>1.7.0</springdoc.version>
|
|
<openapi-generator.version>7.2.0</openapi-generator.version>
|
|
<openapi-generator-maven-plugin.version>7.2.0</openapi-generator-maven-plugin.version>
|
|
<jackson-databind-nullable.version>0.2.6</jackson-databind-nullable.version>
|
|
</properties>
|
|
|
|
</project> |