Skip to content

Commit 5c8e753

Browse files
committed
Cover CLI 2025.05.02: Resolve preflight warnings
1 parent 28f97a2 commit 5c8e753

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
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
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">
2+
<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">
45
<modelVersion>4.0.0</modelVersion>
56
<groupId>io.diffblue.corebanking</groupId>
67
<artifactId>CoreBanking</artifactId>
@@ -13,16 +14,34 @@
1314
</properties>
1415
<dependencies>
1516
<!-- Only for JCover -->
17+
<dependency>
18+
<groupId>com.diffblue.cover</groupId>
19+
<artifactId>cover-annotations</artifactId>
20+
<version>1.4.0</version>
21+
<scope>provided</scope>
22+
</dependency>
1623
<dependency>
1724
<groupId>org.mockito</groupId>
1825
<artifactId>mockito-core</artifactId>
1926
<version>4.7.0</version>
2027
<scope>test</scope>
2128
</dependency>
29+
<dependency>
30+
<groupId>org.mockito</groupId>
31+
<artifactId>mockito-junit-jupiter</artifactId>
32+
<version>4.7.0</version>
33+
<scope>test</scope>
34+
</dependency>
35+
<dependency>
36+
<groupId>org.junit.jupiter</groupId>
37+
<artifactId>junit-jupiter-api</artifactId>
38+
<version>5.9.0</version>
39+
<scope>test</scope>
40+
</dependency>
2241
<dependency>
2342
<groupId>org.junit.jupiter</groupId>
2443
<artifactId>junit-jupiter-engine</artifactId>
25-
<version>5.5.2</version>
44+
<version>5.9.0</version>
2645
<scope>test</scope>
2746
</dependency>
2847
<dependency>
@@ -110,4 +129,4 @@
110129
</plugin>
111130
</plugins>
112131
</build>
113-
</project>
132+
</project>

0 commit comments

Comments
 (0)