Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
Enabled Coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan-Willem Gmelig Meyling committed Feb 1, 2016
1 parent a7cf953 commit dd779f5
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -4,3 +4,5 @@ jdk:
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
after_success:
- mvn clean test jacoco:report coveralls:report
1 change: 1 addition & 0 deletions README.md
@@ -1,5 +1,6 @@
[![Stories in Ready](https://badge.waffle.io/devhub-tud/devhub.png?label=ready&title=Ready)](https://waffle.io/devhub-tud/devhub)
[![Build Status](https://travis-ci.org/devhub-tud/devhub.svg?branch=master)](https://travis-ci.org/devhub-tud/devhub)
[![Coverage Status](https://coveralls.io/repos/github/devhub-tud/devhub/badge.svg?branch=master)](https://coveralls.io/github/devhub-tud/devhub?branch=master)
DevHub
======

Expand Down
22 changes: 22 additions & 0 deletions pom.xml
Expand Up @@ -484,7 +484,29 @@
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.1.0</version>
<configuration>
<repoToken>MdQaCYkIhQGTDc6fvL87QzN6fnOsXBoBJ</repoToken>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.5.201505241946</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>

</build>

</project>

0 comments on commit dd779f5

Please sign in to comment.