forked from loafle/openapi-generator-original
* [kotlin] update pom.xml * [kotlin] update pom.xml * [kotlin][client] update dependencies * [kotlin][client] restore gradle * [kotlin][client] try to fix CI * Revert "[kotlin][client] restore gradle" This reverts commit 20a2947447f5646ca4850304a26bdf76e630a497. * [kotlin][client] try to fix CI * [kotlin][client] try to fix CI * [kotlin][client] try to fix CI * install gradle * [kotlin][client] try to fix CI * [kotlin][client] try to fix CI * [kotlin][client] disable integration tests Co-authored-by: William Cheng <wing328hk@gmail.com>
60 lines
2.2 KiB
XML
60 lines
2.2 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>KotlinJsonRequestStringClientTests</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<name>Kotlin Moshi 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-install</id>
|
|
<phase>integration-test</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<executable>gradle</executable>
|
|
<arguments>
|
|
<argument>wrapper</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>bundle-test</id>
|
|
<phase>integration-test</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<executable>./gradlew</executable>
|
|
<arguments>
|
|
<argument>build</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|