Skip to content
Snippets Groups Projects
Commit 556fba08 authored by Christopher Bohn's avatar Christopher Bohn :thinking:
Browse files

added surefire report plugin to pom, to allow test report generation

parent 057eac18
No related branches found
No related tags found
No related merge requests found
...@@ -40,6 +40,11 @@ ...@@ -40,6 +40,11 @@
<argLine>-noverify</argLine> <argLine>-noverify</argLine>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.4</version>
</plugin>
</plugins> </plugins>
</build> </build>
<dependencies> <dependencies>
...@@ -50,7 +55,14 @@ ...@@ -50,7 +55,14 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.19.1</version>
</plugin>
</plugins>
</reporting>
</project> </project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment