forked from loafle/openapi-generator-original
commit e3210cf8cc679c54f5c0d8d4fda2db6af1ee5bcf Author: wing328 <wing328hk@gmail.com> Date: Sun Jul 23 17:41:44 2017 +0800 comment out failed kotlin test commit ed6bd1b92464f56885bc3cfa5d30936ce4a3d53d Author: wing328 <wing328hk@gmail.com> Date: Sun Jul 23 17:17:20 2017 +0800 test kotlin the last commit a601445d04d0935f6a80a5052f1b4c6c3ee514d2 Author: wing328 <wing328hk@gmail.com> Date: Sun Jul 23 16:56:40 2017 +0800 add test for kotlin client
47 lines
1.7 KiB
XML
47 lines
1.7 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>KotlinPetstoreClientTests</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<name>Kotlin Swagger Petstore Client</name>
|
|
<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.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>bundle-test</id>
|
|
<phase>integration-test</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<executable>gradle</executable>
|
|
<arguments>
|
|
<argument>test</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|