Skip to content

Commit d2ae3a2

Browse files
committed
manual merge of pom.xml (test) change
1 parent 7ddce07 commit d2ae3a2

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

pom.xml

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,17 @@
8888
<version>${jackson.version.core}</version>
8989
</dependency>
9090

91-
<!-- and for testing we need a few libraries
92-
libs for which we use reflection for code, but direct dep for testing
93-
-->
94-
91+
<!-- Test dependencies -->
92+
<dependency>
93+
<groupId>org.junit.vintage</groupId>
94+
<artifactId>junit-vintage-engine</artifactId>
95+
<scope>test</scope>
96+
</dependency>
97+
<dependency>
98+
<groupId>org.junit.jupiter</groupId>
99+
<artifactId>junit-jupiter</artifactId>
100+
<scope>test</scope>
101+
</dependency>
95102
<dependency>
96103
<groupId>org.powermock</groupId>
97104
<artifactId>powermock-core</artifactId>
@@ -144,6 +151,18 @@
144151
</repository>
145152
</repositories>
146153

154+
<dependencyManagement>
155+
<dependencies>
156+
<dependency>
157+
<groupId>org.junit</groupId>
158+
<artifactId>junit-bom</artifactId>
159+
<version>5.9.2</version>
160+
<type>pom</type>
161+
<scope>import</scope>
162+
</dependency>
163+
</dependencies>
164+
</dependencyManagement>
165+
147166
<build>
148167
<plugins>
149168
<plugin>

0 commit comments

Comments
 (0)