| https://codecov.io | @codecov | hello@codecov.io |
|---|
This repository serves as an example on how to use Codecov Global for Java.
<plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.5.8.201207111220</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin>For the newest version check here
Add to your .travis.yml file.
language: java after_success: - bash <(curl -s https://codecov.io/bash)All other CI you can simply run
bash <(curl -s https://codecov.io/bash).
Add to your .travis.yml file.
env: global: - CODECOV_TOKEN=:uuid-repo-token after_success: - bash <(curl -s https://codecov.io/bash)View source and learn more about Codecov Global Uploader