2015-04-01 04:48:12 +00:00
|
|
|
<project>
|
2015-06-07 15:56:08 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-08-10 07:48:19 +00:00
|
|
|
<groupId>org.openapitools</groupId>
|
2015-06-07 15:56:08 +00:00
|
|
|
<artifactId>RubyPetstoreClientTests</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2018-08-16 05:59:47 +00:00
|
|
|
<name>Ruby OpenAPI Petstore Client</name>
|
2015-06-07 15:56:08 +00: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.2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>bundle-install</id>
|
|
|
|
<phase>pre-integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>exec</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<executable>bundle</executable>
|
|
|
|
<arguments>
|
|
|
|
<argument>install</argument>
|
2017-03-11 08:59:17 +00:00
|
|
|
<argument>--path</argument>
|
|
|
|
<argument>vendor/bundle</argument>
|
2015-06-07 15:56:08 +00:00
|
|
|
</arguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>bundle-test</id>
|
|
|
|
<phase>integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>exec</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<executable>bundle</executable>
|
|
|
|
<arguments>
|
|
|
|
<argument>exec</argument>
|
|
|
|
<argument>rspec</argument>
|
|
|
|
</arguments>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-04-01 04:48:12 +00:00
|
|
|
</project>
|