Skip to content

Commit

Permalink
coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
bvolpato committed Jul 1, 2016
1 parent b242ef6 commit 815953e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
@@ -1,2 +1,4 @@
language: java
install: mvn clean install
install: mvn clean install
after_success:
- mvn clean test jacoco:report coveralls:report
24 changes: 23 additions & 1 deletion pom.xml
Expand Up @@ -26,7 +26,7 @@
<description>Master Data Management Transformation Language</description>
<url>http://github.com/brunocvcunha/mdmlang</url>
<inceptionYear>2015</inceptionYear>

<licenses>
<license>
<name>The Apache License, Version 2.0</name>
Expand Down Expand Up @@ -140,6 +140,28 @@
</executions>
</plugin>

<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.2.0</version>
<configuration>
<timestampFormat>${maven.build.timestamp.format}</timestampFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.7.201606060606</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>

Expand Down

0 comments on commit 815953e

Please sign in to comment.