2016-02-26 14:00:58 +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">
|
2016-06-14 14:56:50 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-04-24 14:26:52 +00:00
|
|
|
<groupId>org.openapitools</groupId>
|
|
|
|
<artifactId>spring-mvc-server-j8-async</artifactId>
|
2016-06-14 14:56:50 +00:00
|
|
|
<packaging>jar</packaging>
|
2018-04-24 14:26:52 +00:00
|
|
|
<name>spring-mvc-server-j8-async</name>
|
2016-06-14 14:56:50 +00:00
|
|
|
<version>1.0.0</version>
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2017-06-28 16:14:16 +00:00
|
|
|
<version>3.1.0</version>
|
2016-06-14 14:56:50 +00:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
<goal>verify</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
|
|
<version>${jetty-version}</version>
|
|
|
|
<configuration>
|
|
|
|
<webAppConfig>
|
|
|
|
<contextPath>/v2</contextPath>
|
|
|
|
</webAppConfig>
|
|
|
|
<webAppSourceDirectory>target/${project.artifactId}-${project.version}</webAppSourceDirectory>
|
|
|
|
<stopPort>8079</stopPort>
|
|
|
|
<stopKey>stopit</stopKey>
|
2018-07-27 15:41:31 +00:00
|
|
|
<stopWait>10</stopWait>
|
2016-06-14 14:56:50 +00:00
|
|
|
<httpConnector>
|
|
|
|
<port>8002</port>
|
|
|
|
<idleTimeout>60000</idleTimeout>
|
|
|
|
</httpConnector>
|
|
|
|
</configuration>
|
2018-05-13 16:12:01 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.validation</groupId>
|
|
|
|
<artifactId>validation-api</artifactId>
|
|
|
|
<version>${beanvalidation-version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-06-14 14:56:50 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>start-jetty</id>
|
|
|
|
<phase>pre-integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>start</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<scanIntervalSeconds>0</scanIntervalSeconds>
|
|
|
|
<daemon>true</daemon>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>stop-jetty</id>
|
|
|
|
<phase>post-integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>stop</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>${slf4j-version}</version>
|
|
|
|
</dependency>
|
2016-02-26 14:00:58 +00:00
|
|
|
|
2016-06-14 14:56:50 +00:00
|
|
|
<!--Spring dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
<version>${spring-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<version>${spring-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
<version>${spring-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!--SpringFox dependencies-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
<version>${springfox-version}</version>
|
2016-11-04 09:55:16 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-06-14 14:56:50 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
<version>${springfox-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
<version>${jackson-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>${servlet-api-version}</version>
|
|
|
|
</dependency>
|
2018-06-07 05:55:12 +00:00
|
|
|
<!-- Bean Validation API support -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.validation</groupId>
|
|
|
|
<artifactId>validation-api</artifactId>
|
|
|
|
<version>${beanvalidation-version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-06-14 14:56:50 +00:00
|
|
|
</dependencies>
|
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
<jetty-version>9.2.15.v20160210</jetty-version>
|
|
|
|
<slf4j-version>1.7.21</slf4j-version>
|
|
|
|
<junit-version>4.12</junit-version>
|
|
|
|
<servlet-api-version>2.5</servlet-api-version>
|
2018-06-07 05:55:12 +00:00
|
|
|
<springfox-version>2.8.0</springfox-version>
|
|
|
|
<jackson-version>2.9.5</jackson-version>
|
|
|
|
<jackson-threetenbp-version>2.8.4</jackson-threetenbp-version>
|
2018-05-13 16:12:01 +00:00
|
|
|
<beanvalidation-version>1.1.0.Final</beanvalidation-version>
|
2018-10-18 16:21:40 +00:00
|
|
|
<spring-version>4.3.20.RELEASE</spring-version>
|
2016-06-14 14:56:50 +00:00
|
|
|
</properties>
|
2016-06-14 11:53:15 +00:00
|
|
|
</project>
|