This is an automated email from the ASF dual-hosted git repository.
eax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git
The following commit(s) were added to refs/heads/master by this push:
new 999935b [numbers] support JUnit 5 tests
999935b is described below
commit 999935b53cff1a9fc8c9a5b4a44bd33d22c959c4
Author: Eitan Adler <[email protected]>
AuthorDate: Wed Jun 5 02:34:25 2019 -0700
[numbers] support JUnit 5 tests
---
pom.xml | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/pom.xml b/pom.xml
index 8ff0a23..a161a95 100644
--- a/pom.xml
+++ b/pom.xml
@@ -101,6 +101,17 @@
<dependencies>
<dependency>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter-engine</artifactId>
+ <version>5.0.0-M4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.platform</groupId>
+ <artifactId>junit-platform-runner</artifactId>
+ <version>5.0.0-M4</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
@@ -195,6 +206,18 @@
<!-- See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=912333#63
-->
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
+ <dependencies>
+ <dependency>
+ <groupId>org.junit.platform</groupId>
+ <artifactId>junit-platform-surefire-provider</artifactId>
+ <version>1.3.2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.vintage</groupId>
+ <artifactId>junit-vintage-engine</artifactId>
+ <version>5.4.2</version>
+ </dependency>
+ </dependencies>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>