You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by sm...@apache.org on 2018/08/08 19:42:21 UTC

[directory-scimple] branch develop updated: Adds the JUnit 5 BOM to dependency management

This is an automated email from the ASF dual-hosted git repository.

smoyer1 pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/directory-scimple.git


The following commit(s) were added to refs/heads/develop by this push:
     new 0a4e5a9  Adds the JUnit 5 BOM to dependency management
0a4e5a9 is described below

commit 0a4e5a974db4718861513554574122beec2ef671
Author: Steve Moyer <sm...@psu.edu>
AuthorDate: Wed Aug 8 15:42:15 2018 -0400

    Adds the JUnit 5 BOM to dependency management
---
 pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/pom.xml b/pom.xml
index 3458a86..6bb463f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,6 +37,9 @@
     <maven.compiler.target>8</maven.compiler.target>
 
     <version.jackson>2.9.5</version.jackson>
+    <version.junit5-minor>2.0</version.junit5-minor>
+    <version.junit5-platform>1.${version.junit5-minor}</version.junit5-platform>
+    <version.junit5-jupiter>5.${version.junit5-minor}</version.junit5-jupiter>
     <version.lombok>1.16.14</version.lombok>
     <version.lombok.plugin>${version.lombok}.0</version.lombok.plugin>
     <version.restfuse>1.2.0</version.restfuse>
@@ -188,6 +191,12 @@
         <scope>test</scope>
       </dependency>
       <dependency>
+        <groupId>org.junit</groupId>
+        <artifactId>junit-bom</artifactId>
+        <version>${version.junit5-jupiter}</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
         <groupId>com.fasterxml.jackson</groupId>
         <artifactId>jackson-bom</artifactId>
         <version>${version.jackson}</version>