Skip to content

Commit

Permalink
Add JUnitTestRunnerInterceptor for JUnit4 Parameterized tests #1630
Browse files Browse the repository at this point in the history
  • Loading branch information
EcljpseB0T committed Dec 4, 2023
1 parent 4355f45 commit 2b6ce7b
Showing 1 changed file with 24 additions and 13 deletions.
37 changes: 24 additions & 13 deletions eclipse-platform-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -435,16 +435,27 @@
<artifactId>maven-dependency-plugin</artifactId>
<version>3.6.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<properties>
<!-- Attach Clover's test interceptor in order to
record JUnit4 Parameterized tests -->
<property>
<name>listener</name>
<value>
com.atlassian.clover.recorder.junit.JUnitTestRunnerInterceptor</value>
</property>
</properties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
Expand All @@ -470,12 +481,12 @@
<args>-encoding</args>
<args>${project.build.sourceEncoding}</args>
<args>-proceedOnError</args>
<!-- Use this form, for Tycho 22 or less.
<!-- Use this form, for Tycho 22 or less.
<args>-log</args>
<args>${project.build.directory}/@dot.xml</args>
-->
</compilerArgs>
<!-- Use this form for Tycho 23 or greater -->
<!-- Use this form for Tycho 23 or greater -->
<log>xml</log>
<logDirectory>${project.build.directory}/compilelogs</logDirectory>
<showWarnings>true</showWarnings>
Expand Down Expand Up @@ -688,7 +699,7 @@
<head>Implementation Requirements:</head>
</tag>
</tags>
<!-- These are provided by PDE/Tycho by default but javadoc do not know that ... -->
<!-- These are provided by PDE/Tycho by default but javadoc do not know that ... -->
<additionalDependencies>
<additionalDependency>
<groupId>org.osgi</groupId>
Expand Down

0 comments on commit 2b6ce7b

Please sign in to comment.