2015-06-07 15:56:08 +00:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
2015-03-24 22:59:55 +00:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<parent>
|
2018-03-06 16:20:46 +00:00
|
|
|
<groupId>org.openapitools</groupId>
|
|
|
|
<artifactId>openapi-generator-project</artifactId>
|
2019-01-31 23:03:51 +00:00
|
|
|
<version>4.0.0-SNAPSHOT</version>
|
2015-03-24 22:59:55 +00:00
|
|
|
<relativePath>../..</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2018-03-06 16:20:46 +00:00
|
|
|
<artifactId>openapi-generator-cli</artifactId>
|
2015-03-24 22:59:55 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2018-03-06 16:20:46 +00:00
|
|
|
<name>openapi-generator (executable)</name>
|
2015-03-24 22:59:55 +00:00
|
|
|
|
|
|
|
<build>
|
2018-03-06 16:20:46 +00:00
|
|
|
<finalName>openapi-generator-cli</finalName>
|
2015-04-28 05:51:52 +00:00
|
|
|
<resources>
|
2015-06-07 15:56:08 +00:00
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
2017-04-26 09:53:36 +00:00
|
|
|
<filtering>true</filtering>
|
2015-06-07 15:56:08 +00:00
|
|
|
<excludes>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
2015-04-28 05:51:52 +00:00
|
|
|
</resources>
|
2015-03-24 22:59:55 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
2018-03-06 16:20:46 +00:00
|
|
|
<mainClass>org.openapitools.codegen.OpenAPIGenerator</mainClass>
|
2015-03-24 22:59:55 +00:00
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2018-10-07 03:41:31 +00:00
|
|
|
<version>3.2.0</version>
|
2015-03-24 22:59:55 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2015-06-15 11:57:30 +00:00
|
|
|
<id>process-resources</id>
|
2015-03-24 22:59:55 +00:00
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<minimizeJar>false</minimizeJar>
|
|
|
|
<createDependencyReducedPom>true</createDependencyReducedPom>
|
|
|
|
<dependencyReducedPomLocation>
|
|
|
|
${java.io.tmpdir}/dependency-reduced-pom.xml
|
|
|
|
</dependencyReducedPomLocation>
|
|
|
|
<transformers>
|
2015-06-07 15:56:08 +00:00
|
|
|
<transformer
|
|
|
|
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
|
2015-03-24 22:59:55 +00:00
|
|
|
</transformers>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-11-23 07:07:25 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>net.revelc.code</groupId>
|
|
|
|
<artifactId>formatter-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
2018-03-06 16:20:46 +00:00
|
|
|
<!-- Point at the eclipse-formatter.xml in the parent project directory -->
|
2016-11-23 07:07:25 +00:00
|
|
|
<configFile>${project.basedir}${file.separator}${project.parent.relativePath}${file.separator}eclipse-formatter.xml</configFile>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-03-24 22:59:55 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
2018-03-06 16:20:46 +00:00
|
|
|
<groupId>org.openapitools</groupId>
|
|
|
|
<artifactId>openapi-generator</artifactId>
|
2015-03-24 22:59:55 +00:00
|
|
|
<version>${project.version}</version>
|
2018-06-07 04:45:03 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-03-24 22:59:55 +00:00
|
|
|
</dependency>
|
2017-04-26 09:53:36 +00:00
|
|
|
<!--https://github.com/airlift/airline-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.airlift</groupId>
|
|
|
|
<artifactId>airline</artifactId>
|
2018-10-20 07:06:55 +00:00
|
|
|
<version>0.8</version>
|
2017-04-26 09:53:36 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.lambdaj</groupId>
|
|
|
|
<artifactId>lambdaj</artifactId>
|
|
|
|
<version>2.3.3</version>
|
|
|
|
</dependency>
|
2015-03-24 22:59:55 +00:00
|
|
|
<dependency>
|
2018-06-07 04:45:03 +00:00
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
2018-09-26 09:30:30 +00:00
|
|
|
<version>1.2.3</version>
|
2015-03-24 22:59:55 +00:00
|
|
|
</dependency>
|
2015-06-09 13:20:54 +00:00
|
|
|
<dependency>
|
2015-08-27 00:38:51 +00:00
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
<artifactId>testng</artifactId>
|
2016-01-18 10:35:57 +00:00
|
|
|
<!-- <version>${testng-version}</version> -->
|
2015-08-27 00:38:51 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jmockit</groupId>
|
|
|
|
<artifactId>jmockit</artifactId>
|
2016-01-18 10:35:57 +00:00
|
|
|
<!-- <version>${jmockit-version}</version> -->
|
2015-08-27 00:38:51 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-03-24 22:59:55 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2016-05-24 15:27:11 +00:00
|
|
|
</project>
|