diff options
author | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2012-09-14 09:46:00 +0200 |
---|---|---|
committer | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2012-09-14 09:46:00 +0200 |
commit | 7215a16cecd2b30eff25ae9742669ce630612d44 (patch) | |
tree | e152e5d43ccb7c8c82108fce1f19fa3f935309f9 /src/main/assembly/conf | |
parent | fd146e021cc68228933abc9027021e0fea08843f (diff) | |
download | sonar-scanner-cli-7215a16cecd2b30eff25ae9742669ce630612d44.tar.gz sonar-scanner-cli-7215a16cecd2b30eff25ae9742669ce630612d44.zip |
SONARPLUGINS-2256 Do not force UTF-8 as the default charset
=> By default sonar-runner should not use UTF-8 to read source code
files but the default encoding of the JVM.
Diffstat (limited to 'src/main/assembly/conf')
-rw-r--r-- | src/main/assembly/conf/sonar-runner.properties | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/assembly/conf/sonar-runner.properties b/src/main/assembly/conf/sonar-runner.properties index 4a5154d..0a0bb2e 100644 --- a/src/main/assembly/conf/sonar-runner.properties +++ b/src/main/assembly/conf/sonar-runner.properties @@ -22,4 +22,5 @@ #tests=src/test/java #binaries=target/classes -sonar.sourceEncoding=UTF-8 +#----- Default source code encoding +#sonar.sourceEncoding=UTF-8 |