Last active
June 27, 2017 12:38
-
-
Save ludo1026/8523341 to your computer and use it in GitHub Desktop.
SonarQube - sonar-project.properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Required metadata | |
| sonar.projectKey=[nom du projet] | |
| sonar.projectName=[nom du projet] | |
| sonar.projectVersion=[version] | |
| # Paths to source directories. | |
| # Paths are relative to the sonar-project.properties file. Replace "\" by "/" on Windows. | |
| # Do not put the "sonar-project.properties" file in the same directory with the source code. | |
| # (i.e. never set the "sonar.sources" property to ".") | |
| sonar.sources=[chemin complet du répertoire des sources] | |
| # The value of the property must be the key of the language. | |
| sonar.language=java | |
| # Java version | |
| sonar.java.source=1.7 | |
| # Encoding of the source code | |
| sonar.sourceEncoding=UTF-8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment