mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 11:23:58 +00:00
fa12cd3787
* fix jaxrs line break * fix java gradle bat line break * fix scala gradle line break * fix undertow crt line break * fix spring line break * fix undertow line break in pom * rollback undertwo petstore to use petstore.yaml
115 lines
3.7 KiB
XML
115 lines
3.7 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/maven-v4_0_0.xsd">
|
|
<parent>
|
|
<artifactId>oss-parent</artifactId>
|
|
<groupId>org.sonatype.oss</groupId>
|
|
<version>5</version>
|
|
<relativePath>../pom.xml/pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>swagger-undertow-server</artifactId>
|
|
<name>swagger-undertow-server</name>
|
|
<version>1.0.0</version>
|
|
<prerequisites>
|
|
<maven>2.2.0</maven>
|
|
</prerequisites>
|
|
<build>
|
|
<defaultGoal>install</defaultGoal>
|
|
<directory>target</directory>
|
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>2.4.3</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<transformers>
|
|
<transformer />
|
|
</transformers>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.6</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>com.networknt.server.Server</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.4.0</version>
|
|
<configuration>
|
|
<executable>java</executable>
|
|
<arguments>
|
|
<argument>-jar</argument>
|
|
<argument>target/${project.build.finalName}.jar</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<snapshots />
|
|
<id>sonatype-snapshots</id>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>hamcrest-core</artifactId>
|
|
<groupId>org.hamcrest</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<version.httpasyncclient>4.1.2</version.httpasyncclient>
|
|
<version.commons.codec>1.10</version.commons.codec>
|
|
<version.metrics>3.1.2</version.metrics>
|
|
<version.jsonpath>2.2.0</version.jsonpath>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<version.encoder>1.2</version.encoder>
|
|
<version.httpclient>4.5.2</version.httpclient>
|
|
<version.undertow>1.4.0.Final</version.undertow>
|
|
<version.jose4j>0.5.2</version.jose4j>
|
|
<version.commons-lang>2.6</version.commons-lang>
|
|
<java.version>1.8</java.version>
|
|
<version.jackson>2.8.2</version.jackson>
|
|
<version.framework>0.1.1</version.framework>
|
|
<version.swagger>1.5.10</version.swagger>
|
|
<version.mockito>2.1.0-beta.124</version.mockito>
|
|
<version.slf4j>1.7.21</version.slf4j>
|
|
<version.commons.io>2.5</version.commons.io>
|
|
<version.logback>1.1.7</version.logback>
|
|
<version.junit>4.12</version.junit>
|
|
<version.antlr4>4.5.3</version.antlr4>
|
|
</properties>
|
|
</project>
|
|
|