Skip to content

Commit b64d1e8

Browse files
committed
fix: update and add missing JUnit Jupiter dependencies
1 parent 7badde3 commit b64d1e8

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

parsec-testcontainers/pom.xml

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
54
<modelVersion>4.0.0</modelVersion>
65
<parent>
76
<groupId>org.parallaxsecond</groupId>
@@ -11,10 +10,20 @@
1110
</parent>
1211
<artifactId>parsec-testcontainers</artifactId>
1312
<dependencies>
13+
<dependency>
14+
<groupId>org.junit.jupiter</groupId>
15+
<artifactId>junit-jupiter-api</artifactId>
16+
<version>5.11.4</version>
17+
</dependency>
18+
<dependency>
19+
<groupId>org.junit.jupiter</groupId>
20+
<artifactId>junit-jupiter-engine</artifactId>
21+
<version>5.11.4</version>
22+
</dependency>
1423
<dependency>
1524
<groupId>org.testcontainers</groupId>
1625
<artifactId>junit-jupiter</artifactId>
17-
<version>1.16.2</version>
26+
<version>1.20.4</version>
1827
</dependency>
1928
</dependencies>
2029
<properties>

0 commit comments

Comments
 (0)