Skip to content

Commit

Permalink
Add Coveralls Support
Browse files Browse the repository at this point in the history
  • Loading branch information
angelo-streetcontxt committed Jul 26, 2018
1 parent 7c5e04a commit 3c8c164
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Expand Up @@ -29,6 +29,7 @@ jobs:
key: v1-dependencies-{{ checksum "pom.xml" }}

- run: mvn verify
- run: mvn clean cobertura:cobertura coveralls:report

- run:
name: Save test results
Expand Down
22 changes: 22 additions & 0 deletions pom.xml
Expand Up @@ -19,4 +19,26 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<format>xml</format>
<maxmem>256m</maxmem>
<aggregate>true</aggregate>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
<configuration>
<repoToken>${COVERALLS_REPO_TOKEN}</repoToken>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 3c8c164

Please sign in to comment.