Skip to content

Commit c1e4c57

Browse files
woopfeast-ci-bot
authored andcommitted
Fix Java SDK tests not actually running (missing dependencies) (#366)
1 parent 06fe09b commit c1e4c57

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

sdk/java/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,12 @@
5656
<version>${junit.version}</version>
5757
<scope>test</scope>
5858
</dependency>
59+
<dependency>
60+
<groupId>org.junit.jupiter</groupId>
61+
<artifactId>junit-jupiter-api</artifactId>
62+
<version>${junit.version}</version>
63+
<scope>test</scope>
64+
</dependency>
5965
<dependency>
6066
<groupId>org.junit.jupiter</groupId>
6167
<artifactId>junit-jupiter-params</artifactId>
@@ -85,6 +91,14 @@
8591
<nohelp>true</nohelp>
8692
</configuration>
8793
</plugin>
94+
<plugin>
95+
<artifactId>maven-surefire-plugin</artifactId>
96+
<version>2.22.2</version>
97+
</plugin>
98+
<plugin>
99+
<artifactId>maven-failsafe-plugin</artifactId>
100+
<version>2.22.2</version>
101+
</plugin>
88102
</plugins>
89103
</build>
90104

0 commit comments

Comments
 (0)