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"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
<version>5</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
<artifactId>swagger-codegen-project</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>swagger-codegen-project</name>
|
2016-04-06 21:07:52 +00:00
|
|
|
<version>2.1.6</version>
|
2015-02-06 00:17:53 +00:00
|
|
|
<url>https://github.com/swagger-api/swagger-codegen</url>
|
2015-06-07 15:56:08 +00:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:swagger-api/swagger-codegen.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:swagger-api/swagger-codegen.git</developerConnection>
|
|
|
|
<url>https://github.com/swagger-api/swagger-codegen</url>
|
|
|
|
</scm>
|
|
|
|
<prerequisites>
|
|
|
|
<maven>2.2.0</maven>
|
|
|
|
</prerequisites>
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>fehguy</id>
|
|
|
|
<name>Tony Tam</name>
|
|
|
|
<email>fehguy@gmail.com</email>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
<issueManagement>
|
|
|
|
<system>github</system>
|
|
|
|
<url>https://github.com/swagger-api/swagger-core/issues</url>
|
|
|
|
</issueManagement>
|
|
|
|
<mailingLists>
|
|
|
|
<mailingList>
|
|
|
|
<name>swagger-swaggersocket</name>
|
|
|
|
<archive>https://groups.google.com/forum/#!forum/swagger-swaggersocket</archive>
|
|
|
|
</mailingList>
|
|
|
|
</mailingLists>
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Apache License 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
|
|
<outputDirectory>target/classes</outputDirectory>
|
|
|
|
<extensions>
|
|
|
|
<extension>
|
|
|
|
<groupId>org.jvnet.wagon-svn</groupId>
|
|
|
|
<artifactId>wagon-svn</artifactId>
|
|
|
|
<version>1.8</version>
|
|
|
|
</extension>
|
|
|
|
<extension>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-ssh-external</artifactId>
|
|
|
|
<version>1.0-alpha-6</version>
|
|
|
|
</extension>
|
|
|
|
<extension>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-webdav</artifactId>
|
|
|
|
<version>1.0-beta-1</version>
|
|
|
|
</extension>
|
|
|
|
</extensions>
|
|
|
|
<defaultGoal>install</defaultGoal>
|
|
|
|
<directory>target</directory>
|
|
|
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
2015-02-06 00:17:53 +00:00
|
|
|
<plugins>
|
2015-08-27 00:38:51 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${surefire-version}</version>
|
|
|
|
<configuration>
|
|
|
|
<testNGArtifactName>none:none</testNGArtifactName>
|
2015-10-08 16:26:41 +00:00
|
|
|
<argLine>-XX:+StartAttachListener</argLine>
|
2015-08-27 00:38:51 +00:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>test-testng</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<junitArtifactName>none:none</junitArtifactName>
|
|
|
|
<testNGArtifactName>org.testng:testng</testNGArtifactName>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-06-07 15:56:08 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.1.2</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.0</version>
|
|
|
|
<configuration>
|
2016-02-08 21:48:31 +00:00
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
2015-06-07 15:56:08 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
|
|
|
<mode>development</mode>
|
|
|
|
<url>${project.url}</url>
|
|
|
|
<implementation-version>${project.version}</implementation-version>
|
|
|
|
<package>io.swagger</package>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
</plugin>
|
2016-01-06 20:30:24 +00:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.3</version>
|
|
|
|
<configuration>
|
|
|
|
<aggregate>true</aggregate>
|
|
|
|
<source>1.7</source>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
<maxmemory>1g</maxmemory>
|
|
|
|
<excludePackageNames>${javadoc.package.exclude}</excludePackageNames>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.1.2</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-02-06 00:17:53 +00:00
|
|
|
</plugins>
|
2015-06-07 15:56:08 +00:00
|
|
|
</build>
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release-profile</id>
|
|
|
|
<properties>
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>net.alchim31.maven</groupId>
|
|
|
|
<artifactId>scala-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
<goal>testCompile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration/>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>add-source</id>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-source</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<sources>
|
|
|
|
<source>src/main/scala</source>
|
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>release-sign-artifacts</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>performRelease</name>
|
|
|
|
<value>true</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<!-- Samples -->
|
|
|
|
<profile>
|
|
|
|
<id>android-client</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>java</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
2016-05-15 06:40:20 +00:00
|
|
|
<module>samples/client/petstore/android/volley</module>
|
2015-06-07 15:56:08 +00:00
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-11-19 08:04:27 +00:00
|
|
|
<profile>
|
|
|
|
<id>clojure-client</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>clojure</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/client/petstore/clojure</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-06-07 15:56:08 +00:00
|
|
|
<profile>
|
|
|
|
<id>java-client</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>java</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
2015-08-05 09:28:45 +00:00
|
|
|
<module>samples/client/petstore/java/default</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>java-client-jersey2</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>java</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/client/petstore/java/jersey2</module>
|
2015-06-07 15:56:08 +00:00
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-08-31 11:59:17 +00:00
|
|
|
<profile>
|
|
|
|
<id>java-client-okhttp-gson</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>java</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/client/petstore/java/okhttp-gson</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-09-18 12:21:48 +00:00
|
|
|
<profile>
|
|
|
|
<id>java-client-retrofit</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>java</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/client/petstore/java/retrofit</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-11-10 11:30:13 +00:00
|
|
|
<profile>
|
|
|
|
<id>java-client-retrofit2</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>java</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/client/petstore/java/retrofit2</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2016-01-22 14:53:27 +00:00
|
|
|
<profile>
|
|
|
|
<id>java-client-retrofit2-rx</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>java</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/client/petstore/java/retrofit2rx</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-12-10 08:35:38 +00:00
|
|
|
<profile>
|
|
|
|
<id>java-client-feign</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>java</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/client/petstore/java/feign</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-12-17 12:41:09 +00:00
|
|
|
<profile>
|
|
|
|
<id>javascript-client</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>javascript</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/client/petstore/javascript</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-06-07 15:56:08 +00:00
|
|
|
<profile>
|
|
|
|
<id>scala-client</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>scala</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/client/petstore/scala</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>objc-client</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>objc</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
2016-02-13 08:29:35 +00:00
|
|
|
<module>samples/client/petstore/objc/SwaggerClientTests</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>swift-client</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>swift</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/client/petstore/swift/SwaggerClientTests</module>
|
2015-06-07 15:56:08 +00:00
|
|
|
</modules>
|
|
|
|
</profile>
|
2016-03-10 02:26:38 +00:00
|
|
|
<profile>
|
|
|
|
<id>jaxrs-resteasy-server</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>java</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/server/petstore/jaxrs-resteasy</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-06-07 15:56:08 +00:00
|
|
|
<profile>
|
|
|
|
<id>jaxrs-server</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>java</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/server/petstore/jaxrs</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>ruby-client</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>java</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/client/petstore/ruby</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>spring-mvc</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>java</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
|
|
|
<module>samples/server/petstore/spring-mvc</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>samples</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env</name>
|
|
|
|
<value>samples</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
2016-05-15 06:40:20 +00:00
|
|
|
<module>samples/client/petstore/android/volley</module>
|
2015-11-19 08:04:27 +00:00
|
|
|
<module>samples/client/petstore/clojure</module>
|
2015-08-05 09:28:45 +00:00
|
|
|
<module>samples/client/petstore/java/default</module>
|
2016-01-20 03:55:04 +00:00
|
|
|
<module>samples/client/petstore/java/feign</module>
|
2015-08-05 09:28:45 +00:00
|
|
|
<module>samples/client/petstore/java/jersey2</module>
|
2015-08-31 11:59:17 +00:00
|
|
|
<module>samples/client/petstore/java/okhttp-gson</module>
|
2015-10-13 10:18:32 +00:00
|
|
|
<module>samples/client/petstore/java/retrofit</module>
|
2015-11-10 11:39:30 +00:00
|
|
|
<module>samples/client/petstore/java/retrofit2</module>
|
2016-01-22 14:53:27 +00:00
|
|
|
<module>samples/client/petstore/java/retrofit2rx</module>
|
2015-12-17 12:41:09 +00:00
|
|
|
<module>samples/client/petstore/javascript</module>
|
2015-06-07 15:56:08 +00:00
|
|
|
<module>samples/client/petstore/scala</module>
|
|
|
|
<module>samples/server/petstore/spring-mvc</module>
|
|
|
|
<module>samples/client/petstore/ruby</module>
|
2015-08-24 06:46:54 +00:00
|
|
|
<module>samples/server/petstore/jaxrs</module>
|
2016-03-10 02:26:38 +00:00
|
|
|
<module>samples/server/petstore/jaxrs-resteasy</module>
|
2016-02-13 09:43:38 +00:00
|
|
|
<!--module>samples/client/petstore/objc/SwaggerClientTests</module-->
|
2016-02-13 08:46:01 +00:00
|
|
|
<!--module>samples/client/petstore/swift/SwaggerClientTests</module-->
|
2015-06-07 15:56:08 +00:00
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
<modules>
|
|
|
|
<module>modules/swagger-codegen</module>
|
|
|
|
<module>modules/swagger-codegen-cli</module>
|
2015-06-22 18:17:29 +00:00
|
|
|
<module>modules/swagger-codegen-maven-plugin</module>
|
2015-06-07 15:56:08 +00:00
|
|
|
<module>modules/swagger-generator</module>
|
|
|
|
</modules>
|
|
|
|
<reporting>
|
|
|
|
<outputDirectory>target/site</outputDirectory>
|
2015-02-06 00:17:53 +00:00
|
|
|
<plugins>
|
2015-06-07 15:56:08 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>net.alchim31.maven</groupId>
|
|
|
|
<artifactId>scala-maven-plugin</artifactId>
|
|
|
|
<version>${scala-maven-plugin-version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
<configuration>
|
|
|
|
<aggregate>true</aggregate>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<reports>
|
|
|
|
<report>project-team</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
|
|
|
</plugin>
|
2015-02-06 00:17:53 +00:00
|
|
|
</plugins>
|
2015-06-07 15:56:08 +00:00
|
|
|
</reporting>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-08-27 00:38:51 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
<artifactId>testng</artifactId>
|
|
|
|
<version>${testng-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jmockit</groupId>
|
|
|
|
<artifactId>jmockit</artifactId>
|
|
|
|
<version>${jmockit-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-06-07 15:56:08 +00:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype-snapshots</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<properties>
|
2016-04-06 21:07:52 +00:00
|
|
|
<swagger-parser-version>1.0.19</swagger-parser-version>
|
2015-06-07 15:56:08 +00:00
|
|
|
<scala-version>2.11.1</scala-version>
|
|
|
|
<felix-version>2.3.4</felix-version>
|
2016-05-18 02:53:36 +00:00
|
|
|
<swagger-core-version>1.5.9</swagger-core-version>
|
2015-12-28 16:01:18 +00:00
|
|
|
<commons-io-version>2.4</commons-io-version>
|
2015-06-07 15:56:08 +00:00
|
|
|
<commons-cli-version>1.2</commons-cli-version>
|
|
|
|
<junit-version>4.8.1</junit-version>
|
|
|
|
<maven-plugin-version>1.0.0</maven-plugin-version>
|
2016-05-06 08:36:45 +00:00
|
|
|
<commons-lang-version>3.4</commons-lang-version>
|
2015-09-09 08:20:17 +00:00
|
|
|
<slf4j-version>1.7.12</slf4j-version>
|
2015-07-29 09:33:36 +00:00
|
|
|
<scala-maven-plugin-version>3.2.1</scala-maven-plugin-version>
|
2016-03-11 13:10:35 +00:00
|
|
|
<jmustache-version>1.12</jmustache-version>
|
2015-08-27 00:38:51 +00:00
|
|
|
<testng-version>6.9.6</testng-version>
|
|
|
|
<surefire-version>2.18.1</surefire-version>
|
2015-08-31 10:44:01 +00:00
|
|
|
<jmockit-version>1.19</jmockit-version>
|
2015-08-27 16:11:49 +00:00
|
|
|
<reflections-version>0.9.10</reflections-version>
|
2015-06-07 15:56:08 +00:00
|
|
|
</properties>
|
2015-02-07 22:59:35 +00:00
|
|
|
</project>
|