2015-02-06 00:17:53 +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">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
<version>5</version>
|
|
|
|
</parent>
|
2014-08-29 16:47:46 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2015-02-06 00:17:53 +00:00
|
|
|
<groupId>com.wordnik</groupId>
|
|
|
|
<artifactId>swagger-codegen-project</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>swagger-codegen-project</name>
|
|
|
|
<version>2.1.0-SNAPSHOT</version>
|
|
|
|
<url>https://github.com/swagger-api/swagger-codegen</url>
|
2014-08-29 16:47:46 +00:00
|
|
|
<scm>
|
2015-02-06 00:17:53 +00:00
|
|
|
<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>
|
2014-08-29 16:47:46 +00:00
|
|
|
</scm>
|
|
|
|
<prerequisites>
|
|
|
|
<maven>2.2.0</maven>
|
|
|
|
</prerequisites>
|
2015-02-06 00:17:53 +00:00
|
|
|
<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>
|
2014-08-29 16:47:46 +00:00
|
|
|
<build>
|
2015-02-06 00:17:53 +00:00
|
|
|
<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>
|
2014-08-29 16:47:46 +00:00
|
|
|
<plugins>
|
|
|
|
<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>
|
2015-02-06 00:17:53 +00:00
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.1.2</version>
|
2014-08-29 16:47:46 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2015-02-06 00:17:53 +00:00
|
|
|
<id>attach-sources</id>
|
|
|
|
<phase>verify</phase>
|
2014-08-29 16:47:46 +00:00
|
|
|
<goals>
|
2015-02-06 00:17:53 +00:00
|
|
|
<goal>jar-no-fork</goal>
|
2014-08-29 16:47:46 +00:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2015-02-06 00:16:19 +00:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2015-02-06 00:17:53 +00:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
<configuration>
|
|
|
|
<aggregate>true</aggregate>
|
|
|
|
<source>1.6</source>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
<maxmemory>1g</maxmemory>
|
|
|
|
<links>
|
|
|
|
<link>http://java.sun.com/javase/6/docs/api/</link>
|
|
|
|
</links>
|
|
|
|
<excludePackageNames>${javadoc.package.exclude}</excludePackageNames>
|
|
|
|
</configuration>
|
2014-08-29 16:47:46 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2015-02-06 00:17:53 +00:00
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<phase>verify</phase>
|
2014-08-29 16:47:46 +00:00
|
|
|
<goals>
|
2015-02-06 00:17:53 +00:00
|
|
|
<goal>jar</goal>
|
2015-02-06 00:16:19 +00:00
|
|
|
</goals>
|
2014-08-29 16:47:46 +00:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2015-02-06 00:17:53 +00:00
|
|
|
<version>3.0</version>
|
2014-08-29 16:47:46 +00:00
|
|
|
<configuration>
|
2015-02-05 15:16:56 +00:00
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
2014-08-29 16:47:46 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-02-06 00:17:53 +00:00
|
|
|
<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>com.wordnik</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>
|
2015-02-05 15:16:56 +00:00
|
|
|
</plugins>
|
2015-02-06 00:17:53 +00:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<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-gpg-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<releaseProfiles>release</releaseProfiles>
|
|
|
|
<goals>sign</goals>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2014-08-29 16:47:46 +00:00
|
|
|
</build>
|
2015-02-06 00:17:53 +00:00
|
|
|
<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>
|
|
|
|
</profiles>
|
|
|
|
<modules>
|
|
|
|
<module>modules/swagger-codegen</module>
|
|
|
|
<module>modules/swagger-codegen-distribution</module>
|
|
|
|
</modules>
|
|
|
|
<reporting>
|
|
|
|
<outputDirectory>target/site</outputDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.9</version>
|
|
|
|
<configuration>
|
|
|
|
<aggregate>true</aggregate>
|
|
|
|
<debug>true</debug>
|
|
|
|
<links>
|
|
|
|
<link>http://java.sun.com/javaee/5/docs/api</link>
|
|
|
|
<link>http://java.sun.com/j2se/1.5.0/docs/api</link>
|
|
|
|
</links>
|
|
|
|
<excludePackageNames />
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<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>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2014-08-29 16:47:46 +00:00
|
|
|
<properties>
|
2015-02-06 00:17:53 +00:00
|
|
|
<swagger-parser-version>1.0.0-SNAPSHOT</swagger-parser-version>
|
|
|
|
<scala-version>2.11.1</scala-version>
|
|
|
|
<felix-version>2.3.4</felix-version>
|
|
|
|
<swagger-core-version>1.5.0-M1</swagger-core-version>
|
|
|
|
<scala-test-version>2.1.4</scala-test-version>
|
|
|
|
<commons-io-version>2.3</commons-io-version>
|
|
|
|
<commons-cli-version>1.2</commons-cli-version>
|
2014-08-29 16:47:46 +00:00
|
|
|
<junit-version>4.8.1</junit-version>
|
|
|
|
<maven-plugin-version>1.0.0</maven-plugin-version>
|
2015-02-06 00:17:53 +00:00
|
|
|
<commons-lang-version>2.4</commons-lang-version>
|
|
|
|
<slf4j-version>1.6.3</slf4j-version>
|
|
|
|
<scala-maven-plugin-version>3.1.5</scala-maven-plugin-version>
|
|
|
|
<scala-version>2.10.4</scala-version>
|
|
|
|
<jmustache-version>1.9</jmustache-version>
|
2014-08-29 16:47:46 +00:00
|
|
|
</properties>
|
2015-02-06 00:17:53 +00:00
|
|
|
</project>
|