ERROR: Not authorized. Please check the properties sonar.login and sonar.password

Hi all, I opened an issue into Travis and they provided me the solution.

The definition in Travis for Sonar addon is changed:

From:

addons:
   sonarcloud:
     organization: "pepstock-org"
     token:
       secure: ${SONAR_TOKEN}

To:

addons:
  sonarcloud:
    organization: "pepstock-org"
    token: ${SONAR_TOKEN}
5 Likes