mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Tests: fixed junit versions compatible (not working tests);
This commit is contained in:
parent
1c5f74ea99
commit
39702e9223
1 changed files with 12 additions and 4 deletions
16
pom.xml
16
pom.xml
|
@ -89,7 +89,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>2.22.2</version>
|
<version>3.0.0-M5</version>
|
||||||
<!--
|
<!--
|
||||||
for compatible with jacoco code coverage - argLine moved to properties section
|
for compatible with jacoco code coverage - argLine moved to properties section
|
||||||
<configuration>
|
<configuration>
|
||||||
|
@ -183,9 +183,9 @@
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<!-- junit 4 tests -->
|
<!-- junit 4 tests -->
|
||||||
<groupId>junit</groupId>
|
<groupId>org.junit.vintage</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit-vintage-engine</artifactId>
|
||||||
<version>4.13.2</version>
|
<version>5.7.2</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -208,6 +208,14 @@
|
||||||
<!-- OTHER dependencies - you must add it to child modules manually (copy groupId and artifactId without scope and version) -->
|
<!-- OTHER dependencies - you must add it to child modules manually (copy groupId and artifactId without scope and version) -->
|
||||||
<!-- write shared libs from all childs here to version control -->
|
<!-- write shared libs from all childs here to version control -->
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<!-- junit compatible dependencies (xmage uses junit 5 platform for all v4 and v5 tests) -->
|
||||||
|
<groupId>org.junit</groupId>
|
||||||
|
<artifactId>junit-bom</artifactId>
|
||||||
|
<version>5.8.1</version>
|
||||||
|
<type>pom</type>
|
||||||
|
<scope>import</scope>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<!-- json support -->
|
<!-- json support -->
|
||||||
<groupId>com.google.code.gson</groupId>
|
<groupId>com.google.code.gson</groupId>
|
||||||
|
|
Loading…
Reference in a new issue