I have a few Maven projects with packaging equal to JAR (example: EasyBundle). Unfortunately I cannot see Java Properties Plugin Quality Profile at project dashboard after analysis:
My project contains *.properties files in src/test/resources (see sources). How can I activate Java Properties Plugin during the Maven JAR project analysis?

By default the SonarQube Maven plugin will only index what Maven consider as source folders (ie
src/main/javaandsrc/test/javafor a JAR project).If you want to have files in
src/test/resourcesindexed you have to override default configuration either on command line or in yourpom.xml.Try:
mvn sonar:sonar -Dsonar.tests=src/testOr add:
in your
pom.xml