diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2013-01-31 15:54:15 +0100 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2013-01-31 16:00:29 +0100 |
commit | b159d9680d1703e3785f4cf8dcf2d30ae52c9fb7 (patch) | |
tree | f975773f5d5a309804e9af4ebd46b4ee2add3e2f /sonar-plugin-api | |
parent | 5780fbec1b757a9afbaa3c8ba88e591d6b9534d6 (diff) | |
download | sonarqube-b159d9680d1703e3785f4cf8dcf2d30ae52c9fb7.tar.gz sonarqube-b159d9680d1703e3785f4cf8dcf2d30ae52c9fb7.zip |
SONAR-2291 Minor changes on cache
* default cache folder is ~/.sonar/cache
* fail execution when there is a checksum mismatch
* improve logging
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java index e4c1a85868c..458d186dfcd 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java @@ -379,7 +379,7 @@ public interface CoreProperties { /** * @since 3.5 */ - String CACHE_LOCATION = "sonar.cacheLocation"; + String CACHE_LOCATION = "sonar.cachePath"; /** * @deprecated replaced in v3.4 by properties specific to languages, for example sonar.java.coveragePlugin |