Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Jtest はビルドシステムプラグインを利用してApache Maven、Apache Ant、Gradle と連携して使用することが出来ます。

...

jtest.home プロパティおよび <pluginRepository> を定義する <profile> の登録

<profiles>
<profile> <profile>
<id>jtest  <id>jtest-settings-profile</id>
<activation>  <activation>
<activeByDefault>true<   <activeByDefault>true</activeByDefault>
<  </activation>
<properties>  <properties>
<jtest   <jtest.home>PATH/TO/JTEST</jtest.home>
<  </properties>
<pluginRepositories>  <pluginRepositories>
<pluginRepository>   <pluginRepository>
<id>jtest    <id>jtest-local</id>
<url>[file    <url>file://${jtest.home}/integration/maven</url>url>
<   </pluginRepository>
<  </pluginRepositories>
< </profile>
</profiles>

※ PATH/TO/JTEST は Jtest のインストールディレクトリを示します。(例C:\jtest_10.4.0)②jtest.home プロパティおよび <pluginRepository> を定義する <profile> の登録
【注意】

① グローバル設定、ユーザー設定の2つの settings.xml ファイルが存在する場合はユーザー設定が優先されます。

Jenkins などの継続的インテグレーションサーバーから Jtest を実行する場合は、継続的インテグレーションサーバーの起動ユーザーにご注意ください。


解析の方法は『ユーザーマニュアル』の『Maven を使用したテストと解析』をご確認ください。
(https://docs.parasoft.com/display/JTESTJP1042/Testing+and+Analysis+with+Maven)

...