I'm trying to use Codacy with Travis CI, Spring Boot and Maven.
My .travis.yml:
env:
global:
- CODACY_PROJECT_TOKEN = Zcs....
My pom.xml
<dependency>
<groupId>org.jacoco</groupId>
<rtifactId>jacoco-maven-plugin</artifactId>
<version>0.8.2</version>
</dependency>
and I got this error from Travis CI
10/27 21:11:23 ERROR c.c.rules.ConfigurationRules:22 - Invalid configuration: Project token not provided and not available in environment variable "CODACY_PROJECT_TOKEN"
Anyone can help me?