Skip to content

Commit

Permalink
Add JUnitTestRunnerInterceptor for JUnit4 Parameterized tests eclipse…
Browse files Browse the repository at this point in the history
  • Loading branch information
EcljpseB0T authored and jukzi committed Dec 5, 2023
1 parent 0280bfc commit 17d93aa
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions eclipse-platform-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -435,12 +435,23 @@
<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>
<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>
Expand Down

0 comments on commit 17d93aa

Please sign in to comment.