This is true: the scanner for Maven ignores the sonar-project.properties file.
To pass analysis parameters when using the scanner for Maven, set them as <properties> in pom.xml , for example:
<properties> <sonar.host.url>http://yourserver</sonar.host.url> </properties>
Or you can also pass parameters using -D on the command line, for example:
mvn sonar:sonar -Dsonar.host.url=http:
source share