Skip to content

Commit b1136f1

Browse files
committed
Add junit, mockito and maven-surefire to pom dependencies
1 parent 30d64ca commit b1136f1

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,20 @@
8989
<version>2.20.0</version>
9090
</dependency>
9191

92+
<dependency>
93+
<groupId>org.junit.jupiter</groupId>
94+
<artifactId>junit-jupiter-engine</artifactId>
95+
<version>5.9.2</version>
96+
<scope>test</scope>
97+
</dependency>
98+
99+
<dependency>
100+
<groupId>org.mockito</groupId>
101+
<artifactId>mockito-core</artifactId>
102+
<version>5.8.0</version>
103+
<scope>test</scope>
104+
</dependency>
105+
92106
</dependencies>
93107
<properties>
94108
<maven.compiler.source>17</maven.compiler.source>
@@ -132,6 +146,12 @@
132146
</execution>
133147
</executions>
134148
</plugin>
149+
150+
<plugin>
151+
<groupId>org.apache.maven.plugins</groupId>
152+
<artifactId>maven-surefire-plugin</artifactId>
153+
<version>3.2.5</version>
154+
</plugin>
135155
</plugins>
136156
</build>
137157
</project>

0 commit comments

Comments
 (0)