Skip to content

Commit

Permalink
Add junit, mockito and maven-surefire to pom dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
karoliineh committed Jan 12, 2024
1 parent 30d64ca commit b1136f1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,20 @@
<version>2.20.0</version>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.9.2</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.8.0</version>
<scope>test</scope>
</dependency>

</dependencies>
<properties>
<maven.compiler.source>17</maven.compiler.source>
Expand Down Expand Up @@ -132,6 +146,12 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.5</version>
</plugin>
</plugins>
</build>
</project>

0 comments on commit b1136f1

Please sign in to comment.