mavenのプラグインSmartBear SoapUI "com.smartbear.soapui"のバージョン5.1.3を使用します。同じフォルダのプロジェクトのリストを実行するタグの完全パスではなく、XMLファイルフォルダの名前のみを定義することは可能ですか?フォルダプロジェクトSmartBear soapui mavenプラグイン
0
A
答えて
0
を既存:
<build>
<plugins>
<plugin>
<groupId>com.github.redfish4ktc.soapui</groupId>
<artifactId>maven-soapui-extension-plugin</artifactId>
<version>4.6.4.2</version>
<executions>
<execution>
<id>soapUI1</id>
<phase>test</phase>
<goals>
<goal>test-multi</goal>
</goals>
<configuration>
<projectFiles>
<scan>
<baseDirectory>./soapui/projects</baseDirectory>
<includes>
<include>**/*_suffix.xml</include>
</includes>
</scan>
</projectFiles>
<outputFolder>./outputfolder</outputFolder>
<junitReport>false</junitReport>
<useOutputFolderPerProject>true</useOutputFolderPerProject>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
追加するこれは単に実行を実行しますmavenコマンド:
mvn test com.github.redfish4ktc.soapui:maven-soapui-extension-plugin:4.6.4.2:test-multi
1
refish pluginを使用すると、フォルダ内のすべてのプロジェクトを実行できます。それとも、この
例行うことができますredfish4ktcで複数の実行部とSOAPUI-のmaven-pluginの(1 SOAPUIプロジェクトXMLファイルを使用して各実行)
関連する問題
- 1. mavenプラグインによるsoapUIテストの実行
- 2. Maven SoapUIプラグイン - Mavenのライフサイクル中に2つのSoapUIテストプロジェクトを実行する方法
- 3. Maven + SoapUI ClassNotFoundException(com.microsoft.sqlserver.jdbc.SQLServerDriver)
- 4. Netbeans soapUIプラグイン
- 5. SOAPUI Mavenは、私はMavenプラグインを使用するSOAPUIテストランナーのAntの実行を変換するに取り組んでいます
- 6. SoapUI、Maven、SurefireとJenkinsの統合
- 7. SoapUI mavenプラグイン:エラー:TestAssertionRegistryタイプJsonPath Countのアサーションがありません
- 8. はSOAPUI-プロのmaven-pluginの
- 9. フェーズを実行する複数のmavenプラグイン
- 10. SoapUI用TFSのカスタムタスク
- 11. Mavenプラグイン
- 12. SOAPUIプラグインfor Eclipseのキーストアを使用
- 13. のmaven-リリース・プラグインとMaven 3.0.3
- 14. Tomcat MavenプラグインとマルチモジュールMavenプロジェクト
- 15. Mavenプラグインjava.library.path
- 16. grailsプラグインmaven repo
- 17. tomcat8 Mavenプラグイン
- 18. MavenプラグインAbstractMojoTestCase PlexusContainerException
- 19. Mavenプラグイン - profileManagerインスタンス
- 20. Maven SCMプラグイン
- 21. Maven execプラグインClassNotFoundException
- 22. アーティファクトsoapuiがありません:SoapUI:jar:5.2.1
- 23. Mavenプラグイン - mvnリリース:prepare
- 24. maven warプラグインとカスタムマニフェストファイル
- 25. wro4j mavenプラグインとjshint
- 26. GradleのMaven jaxb2プラグイン
- 27. Mavenプラグイン:components.xmlとlifecycles.xml
- 28. Maven用のMochaプラグイン
- 29. EclipseのバージョンMavenプラグイン
- 30. maven warプラグインをスピードアップ
プラグインredfish4ktcは安定していません。そして、複数の実行セクションを持つ2番目の解決策は、新しいスクリプトSoapUIがあるたびにpom.xmlを変更することです – Dali