Skip to content

Commit 0e445ca

Browse files
committed
Fix pom build for CI
Signed-off-by: Taylor Smock <smocktaylor@gmail.com>
1 parent 0157096 commit 0e445ca

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

pom.xml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,43 @@
3232
<plugin.minimum.java.version>${java.lang.version}</plugin.minimum.java.version>
3333
<plugin.canloadatruntime>true</plugin.canloadatruntime>
3434
</properties>
35+
<dependencies>
36+
<dependency>
37+
<groupId>org.wiremock</groupId>
38+
<artifactId>wiremock</artifactId>
39+
<scope>test</scope>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.junit.platform</groupId>
43+
<artifactId>junit-platform-launcher</artifactId>
44+
<scope>test</scope>
45+
</dependency>
46+
<dependency>
47+
<groupId>org.junit.platform</groupId>
48+
<artifactId>junit-platform-suite</artifactId>
49+
<scope>test</scope>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.junit.vintage</groupId>
53+
<artifactId>junit-vintage-engine</artifactId>
54+
<scope>test</scope>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.junit.jupiter</groupId>
58+
<artifactId>junit-jupiter-params</artifactId>
59+
<scope>test</scope>
60+
</dependency>
61+
<dependency>
62+
<groupId>org.junit.jupiter</groupId>
63+
<artifactId>junit-jupiter-api</artifactId>
64+
<scope>test</scope>
65+
</dependency>
66+
<dependency>
67+
<groupId>org.junit.jupiter</groupId>
68+
<artifactId>junit-jupiter-engine</artifactId>
69+
<scope>test</scope>
70+
</dependency>
71+
</dependencies>
3572
<build>
3673
<plugins>
3774
<plugin>

0 commit comments

Comments
 (0)