...
| Code Block |
|---|
<project>
<!-- ... -->
<build>
<!-- ... -->
<plugins>
<!-- ... -->
<plugin>
<groupId>com.parasoft.jtest</groupId>
<artifactId>jtest-maven-plugin</artifactId>
<version>2025<version>2026.21.0</version>
<configuration>
<settings>settings.properties</settings>
<config>builtin://Recommended Rules</config>
<resources>
<resource>**/my/package/**/*.java</resource>
<resource>**/*.xml</resource>
</resources>
<exclude>**/test/**</exclude>
<report>report_dir</report>
<publish>true</publish>
</configuration>
</plugin>
</plugins>
</build>
</project> |
...
| Code Block |
|---|
<project>
<!-- ... -->
<build>
<!-- ... -->
<plugins>
<!-- ...
configuration with non default compiler plugin appending
${extra-classpath-element} and changing sourcelevel which
cannot be detected automatically
-->
<plugin>
<groupId>com.parasoft.jtest</groupId>
<artifactId>jtest-maven-plugin</artifactId>
<version>2025<version>2026.21.0</version>
<configuration>
<compilation>
<!-- no id specified so Maven default: "default-compile" id will be used -->
<classpath>
<path>${extra-classpath-element}</path>
</classpath>
<sourcelevel>1.6</sourcelevel>
</compilation>
</configuration>
</plugin>
</plugins>
</build>
</project> |
...