diff options
author | Lars Grefer <eclipse@larsgrefer.de> | 2020-08-17 01:48:58 +0200 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2020-08-16 17:05:51 -0700 |
commit | 4a5660b33fe768958ca505a04e4fb964c0e45435 (patch) | |
tree | 337ddd2984901d87bc9eefeb2ae26c53eb895547 /pom.xml | |
parent | 60786f94a4f279adf16d3c4ac3e1390221b56414 (diff) | |
download | aspectj-4a5660b33fe768958ca505a04e4fb964c0e45435.tar.gz aspectj-4a5660b33fe768958ca505a04e4fb964c0e45435.zip |
Update to JUnit Jupiter 5.6.2
The "old" JUnit-3-style tests will be executed by the vintage-engine
Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 42 |
1 files changed, 32 insertions, 10 deletions
@@ -64,6 +64,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> + <version>2.22.2</version> <configuration> <!-- <testFailureIgnore>true</testFailureIgnore> @@ -95,8 +96,8 @@ </executions> </plugin> - <!-- <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.1</version> - <configuration> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors> + <!-- <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.1</version> + <configuration> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors> </configuration> </plugin> --> <plugin> @@ -107,18 +108,18 @@ <fileset> <directory>.</directory> <includes> -<include>**/ajcore.*.txt</include> +<include>**/ajcore.*.txt</include> - </includes> + </includes> <!-- -<excludes> <exclude>**/important.log</exclude> <exclude>**/another-important.log</exclude> +<excludes> <exclude>**/important.log</exclude> <exclude>**/another-important.log</exclude> </excludes> --> <followSymlinks>false</followSymlinks> </fileset> <fileset> <directory>aj-build</directory> - <!-- <includes> <include>**/*.tmp</include> <include>**/*.log</include> - </includes> <excludes> <exclude>**/important.log</exclude> <exclude>**/another-important.log</exclude> + <!-- <includes> <include>**/*.tmp</include> <include>**/*.log</include> + </includes> <excludes> <exclude>**/important.log</exclude> <exclude>**/another-important.log</exclude> </excludes> --> <followSymlinks>false</followSymlinks> </fileset> @@ -130,11 +131,32 @@ </build> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.junit</groupId> + <artifactId>junit-bom</artifactId> + <version>5.6.2</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + <dependencies> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.13</version> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-api</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.vintage</groupId> + <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> </dependencies> |