2018-01-26 09:48:51 +08:00
<project >
<modelVersion > 4.0.0</modelVersion>
2018-05-04 10:22:42 +02:00
<groupId > org.openapitools</groupId>
2018-01-26 09:48:51 +08:00
<artifactId > PlayServerTests-controller-only</artifactId>
<packaging > pom</packaging>
<version > 1.0-SNAPSHOT</version>
2018-05-04 10:22:42 +02:00
<name > java-play-framework-controller-only Project</name>
2018-01-26 09:48:51 +08:00
<build >
<plugins >
<plugin >
<artifactId > maven-dependency-plugin</artifactId>
<executions >
<execution >
<phase > package</phase>
<goals >
<goal > copy-dependencies</goal>
</goals>
<configuration >
<outputDirectory > ${project.build.directory}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin >
<groupId > org.codehaus.mojo</groupId>
<artifactId > exec-maven-plugin</artifactId>
<version > 1.6.0</version>
<executions >
<execution >
<id > Play Test</id>
<phase > integration-test</phase>
<goals >
<goal > exec</goal>
</goals>
<configuration >
<executable > sbt</executable>
<arguments >
<argument > test</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>