Address some warnings in maven execution

This commit is contained in:
Chris Eager
2024-11-11 18:02:28 -06:00
committed by Chris Eager
parent 444f6ca826
commit 744042e8c8
3 changed files with 29 additions and 3 deletions

View File

@@ -101,6 +101,23 @@
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-javaagent:${org.mockito:mockito-core:jar}</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>