Jtest のビルド システム プラグインを使用すると、自動的に検出されたコンパイル データを手動で拡張またはオーバーライドできます。Jtest プラグインの構成パラメーターは、互いに関連しています。

コンパイル データ モデルには <compilation> および <compilations> パラメーターに渡されるデータの構造が含まれます。

<!-- configuration section of Jtest build system plugin -->
  
        <!-- single compilation data customization -->
        <compilation>
            <!-- 
                 Compilation id. If not defined default id for used build system will be used.
              -->
            <id>non_default_id</id>
            <!-- List of source directories -->
            <sourcepath>
                <path>src/main/java</path>
                <path>${path_1}</path>
            </sourcepath>
            <!-- List of directories with compiled classes -->
            <binarypath>
                <path>${basedir}/target/classes</path>
            </binarypath>
            <!-- List of classpath jars -->
            <classpath>
                <path>${extra-classpath-element}</path>
            </classpath>
            <!-- List of Java jars -->
            <bootpath>
                <path>${JAVA_HOME}/jre/lib/rt.jar</path>
            </bootpath
            <encoding>UTF-8</encoding>
            <sourcelevel>1.5</sourcelevel>
            <!-- 
                 When set to "true" fully overrides detected compilation
                 data with same id on same project. When set to "false" 
                 only extends it. By default "false". 
              -->
            <override>false</override>
        </compilation>
        
        <!-- 
             Multiple compilation data customizations can be used 
             if project performs multiple compilations.
          -->
        <compilations>
            <compilation>
                <id>different_id</id>
                <!-- ... compilation data -->
            </compilation>
            <compilation>
                <id>another_id</id>
                <!-- ... compilation data -->
            </compilation>
        </compilations>
        
  <!-- ... -->  

すべてのプロジェクトのコンパイル データを変更する必要がある場合、XML ファイルを変更するのではなく、コマンド ラインで -Djtest.dataUpdate オプションを使用できます。このオプションを使用すると、JSON のプロジェクト コンパイル データを手動で変更できます。

以下を更新できます。

サポートされているアクション:

例: