"dta/classes/view_submission_utils.php" did not exist on "81d91c69178a8b32aa10fe492d7e503e0a61474b"
Commit 0a807d1a authored by Riegel's avatar Riegel
Browse files

Add Jacoco plugin for test coverage reports

parent 333a3df1
...@@ -73,6 +73,26 @@ ...@@ -73,6 +73,26 @@
<artifactId>javafx-maven-plugin</artifactId> <artifactId>javafx-maven-plugin</artifactId>
<version>0.0.8</version> <version>0.0.8</version>
</plugin> </plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins> </plugins>
</build> </build>
<dependencyManagement> <dependencyManagement>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment