Skip to content

Commit

Permalink
Fixed coverall support
Browse files Browse the repository at this point in the history
  • Loading branch information
atsticks committed Apr 9, 2015
1 parent e726ecd commit 28dc6b7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ jdk:

after_success:
- mvn deploy -Dmaven.test.skip -DcreateDocs=true -s settings.xml
- mvn clean test jacoco:report org.eluder.coveralls:coveralls-maven-plugin:jacoco -DsourceEncoding=UTF-8
- mvn jacoco:report coveralls:jacoco -DsourceEncoding=UTF-8
12 changes: 10 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -134,15 +134,23 @@

<profiles>
<profile>
<id>release-createDocs</id>
<id>travis</id>
<activation>
<property>
<name>createDocs</name>
<name>env.TRAVIS</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down

0 comments on commit 28dc6b7

Please sign in to comment.