2018-05-15 16:57:44 +00:00
|
|
|
<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/maven-v4_0_0.xsd">
|
2015-06-07 15:56:08 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2018-04-17 07:19:10 +00:00
|
|
|
<groupId>org.openapitools</groupId>
|
|
|
|
<artifactId>openapi-generator-project</artifactId>
|
2018-06-01 02:58:16 +00:00
|
|
|
<version>3.0.0</version>
|
2015-06-07 15:56:08 +00:00
|
|
|
<relativePath>../..</relativePath>
|
|
|
|
</parent>
|
2018-04-17 07:19:10 +00:00
|
|
|
<artifactId>openapi-generator-online</artifactId>
|
2018-05-15 16:57:44 +00:00
|
|
|
<packaging>jar</packaging>
|
2018-04-17 07:19:10 +00:00
|
|
|
<name>openapi-generator-online</name>
|
2018-06-01 07:03:32 +00:00
|
|
|
<version>3.0.0</version>
|
2018-05-15 16:57:44 +00:00
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
<springfox-version>2.8.0</springfox-version>
|
|
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
2018-05-17 09:28:14 +00:00
|
|
|
<version>${spring-boot-version}</version>
|
2018-05-15 16:57:44 +00:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2015-06-07 15:56:08 +00:00
|
|
|
<build>
|
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2018-05-15 16:57:44 +00:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2018-05-17 09:28:14 +00:00
|
|
|
<version>${spring-boot-version}</version>
|
2015-06-07 15:56:08 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
2018-05-15 16:57:44 +00:00
|
|
|
<goal>repackage</goal>
|
2015-06-07 15:56:08 +00:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-05-15 16:57:44 +00:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2015-10-29 15:00:58 +00:00
|
|
|
</dependency>
|
2018-05-15 16:57:44 +00:00
|
|
|
<!--SpringFox dependencies -->
|
2015-06-07 15:56:08 +00:00
|
|
|
<dependency>
|
2018-05-15 16:57:44 +00:00
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
<version>${springfox-version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
<artifactId>swagger-annotations</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-06-07 15:56:08 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-05-15 16:57:44 +00:00
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
<version>${springfox-version}</version>
|
2015-06-07 15:56:08 +00:00
|
|
|
</dependency>
|
2015-06-07 06:43:34 +00:00
|
|
|
|
2015-06-07 15:56:08 +00:00
|
|
|
<dependency>
|
2018-05-15 16:57:44 +00:00
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
2015-06-07 15:56:08 +00:00
|
|
|
</dependency>
|
2018-05-15 16:57:44 +00:00
|
|
|
<!-- Bean Validation API support -->
|
2015-06-07 15:56:08 +00:00
|
|
|
<dependency>
|
2018-05-15 16:57:44 +00:00
|
|
|
<groupId>javax.validation</groupId>
|
|
|
|
<artifactId>validation-api</artifactId>
|
2015-06-07 15:56:08 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-05-15 16:57:44 +00:00
|
|
|
<groupId>org.openapitools</groupId>
|
|
|
|
<artifactId>openapi-generator</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
2017-01-03 08:41:16 +00:00
|
|
|
</dependency>
|
2015-06-07 15:56:08 +00:00
|
|
|
</dependencies>
|
2015-02-07 22:59:35 +00:00
|
|
|
</project>
|