2015-06-08 22:40:05 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2015-04-02 14:26:16 +00:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2015-06-08 22:40:05 +00:00
|
|
|
<groupId>io.swagger</groupId>
|
2017-11-27 09:16:44 +00:00
|
|
|
<artifactId>scala-akka-petstore-client</artifactId>
|
2015-04-02 14:26:16 +00:00
|
|
|
<packaging>jar</packaging>
|
2017-11-27 09:16:44 +00:00
|
|
|
<name>scala-akka-petstore-client</name>
|
2015-04-02 14:26:16 +00:00
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<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>
|
2017-11-27 09:16:44 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<version>3.0.0-M1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce-maven</id>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<requireMavenVersion>
|
|
|
|
<version>2.2.0</version>
|
|
|
|
</requireMavenVersion>
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-04-02 14:26:16 +00:00
|
|
|
<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>
|
2017-11-27 09:16:44 +00:00
|
|
|
<version>3.0.0</version>
|
2015-04-02 14:26:16 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>add_sources</id>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-source</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<sources>
|
|
|
|
<source>
|
2015-06-08 22:40:05 +00:00
|
|
|
src/main/java</source>
|
2015-04-02 14:26:16 +00:00
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>add_test_sources</id>
|
|
|
|
<phase>generate-test-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-test-source</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<sources>
|
|
|
|
<source>
|
2015-06-08 22:40:05 +00:00
|
|
|
src/test/java</source>
|
2015-04-02 14:26:16 +00:00
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2017-04-02 13:39:48 +00:00
|
|
|
<version>3.6.1</version>
|
2015-04-02 14:26:16 +00:00
|
|
|
<configuration>
|
2017-11-27 09:16:44 +00:00
|
|
|
<source>
|
|
|
|
1.7</source>
|
2017-04-02 13:39:48 +00:00
|
|
|
<target>1.7</target>
|
2015-04-02 14:26:16 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>net.alchim31.maven</groupId>
|
|
|
|
<artifactId>scala-maven-plugin</artifactId>
|
|
|
|
<version>${scala-maven-plugin-version}</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>
|
|
|
|
<args>
|
|
|
|
<arg>-feature</arg>
|
|
|
|
</args>
|
|
|
|
<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>org.scala-lang</groupId>
|
|
|
|
<artifactId>scala-library</artifactId>
|
|
|
|
<version>${scala-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-06-08 22:40:05 +00:00
|
|
|
<groupId>io.swagger</groupId>
|
2015-04-02 14:26:16 +00:00
|
|
|
<artifactId>swagger-core</artifactId>
|
|
|
|
<version>${swagger-core-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.scalatest</groupId>
|
|
|
|
<artifactId>scalatest_2.10</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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
<version>${joda-time-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.joda</groupId>
|
|
|
|
<artifactId>joda-convert</artifactId>
|
|
|
|
<version>${joda-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe</groupId>
|
|
|
|
<artifactId>config</artifactId>
|
|
|
|
<version>1.2.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.typesafe.akka</groupId>
|
|
|
|
<artifactId>akka-actor_2.10</artifactId>
|
|
|
|
<version>${akka-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.spray</groupId>
|
|
|
|
<artifactId>spray-client</artifactId>
|
|
|
|
<version>${spray-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.json4s</groupId>
|
|
|
|
<artifactId>json4s-jackson_2.10</artifactId>
|
|
|
|
<version>${json4s-jackson-version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<properties>
|
2017-11-27 09:16:44 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2015-04-02 14:26:16 +00:00
|
|
|
<scala-version>2.10.4</scala-version>
|
|
|
|
<json4s-jackson-version>3.2.11</json4s-jackson-version>
|
|
|
|
<json4s-ext-version>3.2.11</json4s-ext-version>
|
|
|
|
<spray-version>1.3.1</spray-version>
|
|
|
|
<akka-version>2.3.9</akka-version>
|
|
|
|
<joda-version>1.2</joda-version>
|
|
|
|
<joda-time-version>2.2</joda-time-version>
|
2017-06-16 18:49:32 +00:00
|
|
|
<swagger-core-version>1.5.15</swagger-core-version>
|
2015-04-02 14:26:16 +00:00
|
|
|
<maven-plugin.version>1.0.0</maven-plugin.version>
|
|
|
|
|
|
|
|
<junit-version>4.8.1</junit-version>
|
|
|
|
<scala-maven-plugin-version>3.1.5</scala-maven-plugin-version>
|
2017-11-27 09:16:44 +00:00
|
|
|
<scala-test-version>2.2.0</scala-test-version>
|
2015-04-02 14:26:16 +00:00
|
|
|
</properties>
|
|
|
|
</project>
|