Skip to content

Commit

Permalink
[FIX] Added JaCoCo dependency to the Java project.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce committed Dec 24, 2018
1 parent 60bd7bb commit 7007354
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Expand Up @@ -12,7 +12,7 @@ maven-build:
script:
- Xvfb :99 -ac &
- export DISPLAY=:99
- mvn package -B
- mvn clean test package jacoco:report -B
artifacts:
paths:
- target/*.jar
19 changes: 19 additions & 0 deletions java-backend/pom.xml
Expand Up @@ -197,6 +197,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.1</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>
<resources>
<resource>
Expand Down

0 comments on commit 7007354

Please sign in to comment.