私のpom.xmlは次のようになります
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.cvent</groupId>
<artifactId>soa-readyapi</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>OnSite Solutions ReadyAPI Tests</name>
<properties>
<soapui.environment/>
<soapui.test-suite/>
<soapui.test-case/>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.smartbear</groupId>
<artifactId>ready-api-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<projectFile>${soapui.projectFile}</projectFile>
<iface>IOrderService</iface>
<tool>wsi,axis1,axis2</tool>
<settingsFile>soapui-settings.xml</settingsFile>
<!-- <environment>${soapui.environment}</environment> -->
<outputFolder>output</outputFolder>
<junitReport>true</junitReport>
<printReport>true</printReport>
<projectProperties>
<value>one_api="https://someurl:4000"</value>
<value>two_api="https://someurl:4001"</value>
<!-- <value>environment=${soapui.environment}</value> -->
</projectProperties>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
次のコマンドでこのプロジェクトを実行しようとすると -
mvn clean test -Dsoapui.projectFile=smokeTest
テストは、ReadyAPI で設定された最後のアクティブな環境で実行されるように見えます。無視する
<value>one_api="https://someurl:4000"</value>
<value>two_api="https://someurl:4001"</value>
環境機能を使用してこれを実行できることはわかっていますが、現在のユース ケースでは役に立ちません。実行時に設定したいのですが、今のところ pom.xml をハードコーディングして、それが機能するかどうかを確認していますが、機能していません。
なぜreadyAPIがpom.xmlで設定している値を無視しているのかについてのアイデアはありますか?
ありがとうございました