Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

1. Add JaCoCo Plugin to your pom.xml file, [see here](https://github.com/codecov/example-java/blob/master/pom.xml#L38-L56)
2. Call `bash <(curl -s https://codecov.io/bash) -t repository-upload-token` at the end of your CI build
- Is you repository public and tested with Travis, CircleCI or AppVeyor? Then the repository upload token is not required!
- Using Travis CI, CircleCI or AppVeyor **AND** the repository is public? **You're done!** No token needed.
- Otherwise, please add your [repository token token][5].

> Other examples
> - [Maven Example][4]
Expand All @@ -13,7 +14,7 @@

# Frequently Asked Questions

####❔How do I enable multi-module projects?
#### ❔How do I enable multi-module projects?

In your `pom.xml` file please append a list of modules in your projects

Expand All @@ -26,19 +27,19 @@ In your `pom.xml` file please append a list of modules in your projects
</project>
```

####❔Seeing `Skipping JaCoCo execution due to missing execution data file`?
#### ❔Seeing `Skipping JaCoCo execution due to missing execution data file`?

Please see [http://stackoverflow.com/questions/18107375/...](http://stackoverflow.com/questions/18107375/getting-skipping-jacoco-execution-due-to-missing-execution-data-file-upon-exec)

####❔Does Codecov accept `jacoco.exec` reports?
#### ❔Does Codecov accept `jacoco.exec` reports?

**No**, these files are not supported. Please produce a `xml` file as detailed in the pom.xml file at [codecov/example-java][1]

####❔Is there a Gradle example?
#### ❔Is there a Gradle example?

**Yes**, enter [codecov/example-gradle][2]

####❔Is there a Android example?
#### ❔Is there a Android example?

**Yes**, enter [codecov/example-android][3]

Expand Down