Skip to content

Commit 742d2a1

Browse files
committed
[bugfix] Add missing JUnit dependency
1 parent f78fa93 commit 742d2a1

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

pom.xml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -410,6 +410,11 @@
410410
</exclusion>
411411
</exclusions>
412412
</dependency>
413+
<dependency>
414+
<groupId>com.evolvedbinary.thirdparty.xml-apis</groupId>
415+
<artifactId>xml-apis</artifactId>
416+
<version>1.4.02</version>
417+
</dependency>
413418
<dependency>
414419
<groupId>javax.servlet</groupId>
415420
<artifactId>javax.servlet-api</artifactId>
@@ -423,9 +428,9 @@
423428
<scope>test</scope>
424429
</dependency>
425430
<dependency>
426-
<groupId>org.apache.ws.commons.util</groupId>
431+
<groupId>com.evolvedbinary.thirdparty.org.apache.ws.commons.util</groupId>
427432
<artifactId>ws-commons-util</artifactId>
428-
<version>1.0.2</version>
433+
<version>1.1.0</version>
429434
</dependency>
430435
<dependency>
431436
<groupId>jaxme</groupId>
@@ -490,9 +495,9 @@
490495
</activation>
491496
<dependencies>
492497
<dependency>
493-
<groupId>org.apache.ws.commons</groupId>
498+
<groupId>com.evolvedbinary.thirdparty.org.apache.ws.commons.java5</groupId>
494499
<artifactId>ws-commons-java5</artifactId>
495-
<version>1.0.1</version>
500+
<version>1.1.0</version>
496501
</dependency>
497502
</dependencies>
498503
</profile>

server/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,10 @@
124124
<groupId>javax.servlet</groupId>
125125
<artifactId>javax.servlet-api</artifactId>
126126
</dependency>
127+
<dependency>
128+
<groupId>junit</groupId>
129+
<artifactId>junit</artifactId>
130+
<scope>test</scope>
131+
</dependency>
127132
</dependencies>
128133
</project>

0 commit comments

Comments
 (0)