mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-07 02:55:19 +00:00
228 lines
6.1 KiB
XML
228 lines
6.1 KiB
XML
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.wordnik</groupId>
|
|
<artifactId>swagger-codegen_2.9.1</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>swagger-codegen</name>
|
|
<version>1.2-SNAPSHOT</version>
|
|
<scm>
|
|
<connection>scm:git:git@github.com:wordnik/swagger-codegen-2.git</connection>
|
|
<developerConnection>scm:git:git@github.com:wordnik/swagger-codegen-2.git</developerConnection>
|
|
<url>https://github.com/wordnik/swagger-codegen-2</url>
|
|
</scm>
|
|
<prerequisites>
|
|
<maven>2.2.0</maven>
|
|
</prerequisites>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>scala-tools.org</id>
|
|
<name>Scala-Tools Maven2 Repository</name>
|
|
<url>http://scala-tools.org/repo-releases</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>maven-mongodb-plugin-repo</id>
|
|
<name>maven mongodb plugin repository</name>
|
|
<url>http://maven-mongodb-plugin.googlecode.com/svn/maven/repo</url>
|
|
<layout>default</layout>
|
|
</pluginRepository>
|
|
|
|
|
|
</pluginRepositories>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.12</version>
|
|
<configuration>
|
|
<systemProperties>
|
|
<property>
|
|
<name>loggerPath</name>
|
|
<value>conf/log4j.properties</value>
|
|
</property>
|
|
</systemProperties>
|
|
<argLine>-Xms512m -Xmx1500m</argLine>
|
|
<parallel>methods</parallel>
|
|
<forkMode>pertest</forkMode>
|
|
</configuration>
|
|
</plugin>
|
|
<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>
|
|
|
|
<!-- attach test jar -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
<goal>test-jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>add_sources</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>add-source</goal>
|
|
</goals>
|
|
<configuration>
|
|
<sources>
|
|
<source>src/main/java</source>
|
|
</sources>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>add_test_sources</id>
|
|
<phase>generate-test-sources</phase>
|
|
<goals>
|
|
<goal>add-test-source</goal>
|
|
</goals>
|
|
<configuration>
|
|
<sources>
|
|
<source>src/test/java</source>
|
|
</sources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.scala-tools</groupId>
|
|
<artifactId>maven-scala-plugin</artifactId>
|
|
<version>2.15.2</version>
|
|
<executions>
|
|
<execution>
|
|
<id>scala-compile-first</id>
|
|
<phase>process-resources</phase>
|
|
<goals>
|
|
<goal>add-source</goal>
|
|
<goal>compile</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>scala-test-compile</id>
|
|
<phase>process-test-resources</phase>
|
|
<goals>
|
|
<goal>testCompile</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<jvmArgs>
|
|
<jvmArg>-Xms128m</jvmArg>
|
|
<jvmArg>-Xmx1500m</jvmArg>
|
|
</jvmArgs>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.scala-tools</groupId>
|
|
<artifactId>maven-scala-plugin</artifactId>
|
|
<configuration>
|
|
<scalaVersion>${scala-version}</scalaVersion>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.wordnik</groupId>
|
|
<artifactId>swagger-core_2.9.1</artifactId>
|
|
<version>${swagger-core-version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.fusesource.scalate</groupId>
|
|
<artifactId>scalate-wikitext</artifactId>
|
|
<version>1.5.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.fusesource.scalate</groupId>
|
|
<artifactId>scalate-page</artifactId>
|
|
<version>1.5.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.scala-lang</groupId>
|
|
<artifactId>scala-library</artifactId>
|
|
<version>${scala-version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.scalatest</groupId>
|
|
<artifactId>scalatest_2.9.1</artifactId>
|
|
<version>${scala-test-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit-version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<repositories>
|
|
<repository>
|
|
<id>scala-tools.org</id>
|
|
<name>Scala-Tools Maven2 Repository</name>
|
|
<url>http://scala-tools.org/repo-releases</url>
|
|
</repository>
|
|
<repository>
|
|
<id>wordnik-ci-aws</id>
|
|
<url>https://ci.aws.wordnik.com/artifactory/libs-snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>wordnik-ci-aws-maven</id>
|
|
<url>https://ci.aws.wordnik.com/artifactory/m2-snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>wordnik-ci-aws-remote</id>
|
|
<url>https://ci.aws.wordnik.com/artifactory/remote-repos/</url>
|
|
</repository>
|
|
</repositories>
|
|
<properties>
|
|
<swagger-core-version>1.02-SNAPSHOT</swagger-core-version>
|
|
<scala-version>2.9.1-1</scala-version>
|
|
<junit-version>4.8.1</junit-version>
|
|
<maven-plugin.version>1.0.0</maven-plugin.version>
|
|
<scala-test-version>1.6.1</scala-test-version>
|
|
</properties>
|
|
</project>
|