Skip to content

Commit 927636b

Browse files
authored
Merge pull request santanusinha#84 from r0goyal/junit5
Using JUnit BOM
2 parents 018eb3f + d8c6a32 commit 927636b

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

pom.xml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,13 @@
8484

8585
<dependencyManagement>
8686
<dependencies>
87+
<dependency>
88+
<groupId>org.junit</groupId>
89+
<artifactId>junit-bom</artifactId>
90+
<version>${junit.jupiter.version}</version>
91+
<type>pom</type>
92+
<scope>import</scope>
93+
</dependency>
8794
<dependency>
8895
<groupId>com.google.guava</groupId>
8996
<artifactId>guava</artifactId>
@@ -101,8 +108,12 @@
101108
</dependency>
102109
<dependency>
103110
<groupId>org.junit.jupiter</groupId>
104-
<artifactId>junit-jupiter</artifactId>
105-
<version>${junit.jupiter.version}</version>
111+
<artifactId>junit-jupiter-api</artifactId>
112+
<scope>test</scope>
113+
</dependency>
114+
<dependency>
115+
<groupId>org.junit.jupiter</groupId>
116+
<artifactId>junit-jupiter-engine</artifactId>
106117
<scope>test</scope>
107118
</dependency>
108119
<dependency>

0 commit comments

Comments
 (0)