Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Additional analysis parameters are listed on the Analysis Parameters page.

See also some complete examples here.

Security

Since Sonar 3.4, if you have set the security property a project cannot be accessed anonymously, the 'sonar.forceAuthenticationlogin'  to and 'true', sonar.password' properties are required to run the analysis, you an analysis on this project. These properties have to be set to the 'sonar.login' and 'sonar.password' properties to an existing user, credentials of a user having the 'User' role on this project. You can set them either:

  • directly on the command line by adding -Dsonar.login=myUser -Dsonar.password=myPassword
  • or by setting these two properties in the pom.xml file
  • or in the Maven profile (settings.xml file)

A project cannot be anonymously accessed when either:

Sample Projects

To help you getting started, a simple project sample is available on github that can be browsed or downloaded: projects/languages/java/maven/java-maven-simple

How to Fix Version of Maven Plugin

...