We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 741a492 commit 95d46aaCopy full SHA for 95d46aa
.coveralls
@@ -0,0 +1,2 @@
1
+service_name: travis-pro
2
+repo_token: ${env.COVERALLS_REPO_TOKEN}
.utility/build.sh
@@ -4,5 +4,5 @@ then
4
echo 'Travis can only publish docs for release builds.'
5
return 0
6
fi
7
-mvn test
+mvn test -DrepoToken=$COVERALLS_REPO_TOKEN
8
exit $?
pom.xml
@@ -289,6 +289,14 @@
289
</execution>
290
</executions>
291
</plugin>
292
+ <plugin>
293
+ <groupId>org.eluder.coveralls</groupId>
294
+ <artifactId>coveralls-maven-plugin</artifactId>
295
+ <version>4.3.0</version>
296
+ <configuration>
297
+ <repoToken>yourcoverallsprojectrepositorytoken</repoToken>
298
+ </configuration>
299
+ </plugin>
300
</plugins>
301
</build>
302
</project>
0 commit comments