Skip to content

Commit

Permalink
explicit junit provider to make the tests run
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoBettini committed Mar 6, 2024
1 parent a83ad08 commit 0a9d072
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions org.eclipse.xtend.lib.tests/pom.xml
Expand Up @@ -28,6 +28,21 @@
<groupId>org.eclipse.xtend</groupId>
<artifactId>xtend-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<failIfNoTests>true</failIfNoTests>
</configuration>
<dependencies>
<!-- force to run with JUnit4 -->
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>${maven-surefire-version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 0a9d072

Please sign in to comment.