SonarQube autodects languages since 4.1 version.
authorgustavo <gu.martinm@gmail.com>
Sun, 21 Aug 2016 21:40:21 +0000 (23:40 +0200)
committergustavo <gu.martinm@gmail.com>
Sun, 21 Aug 2016 21:40:21 +0000 (23:40 +0200)
No need of using sonar.language property anymore :)
Besides this property does not admit more than one language :(

angularjs/showcase/sonar-project.properties

index 82f3114..8e18f12 100644 (file)
@@ -9,7 +9,11 @@ sonar.host.url=http://192.168.1.33:9091/sonarqube
 sonar.sources=src/showcase/app/
 
 # Language
-sonar.language=js
+# My project has HTML and JavaScript. Comma separated languages do not work.
+# However since SonarQube 4.2 we do not need to declare the project's languages.
+# SonarQube detects by itself what languages is using the project to be analyzed!!
+# See: http://stackoverflow.com/a/13625963
+#sonar.language=js  THIS OPTION IS NOT REQUIRED ANYMORE :)
 
 # Encoding of sources files
 sonar.sourceEncoding=UTF-8