diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-10-20 18:46:58 +0200 |
---|---|---|
committer | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-10-23 08:01:13 -0700 |
commit | 8260558f49f1ea651f69206a943ac1e3eaa814b1 (patch) | |
tree | 7e2c4856af784f2f8023efbf431ebb8700cb104c | |
parent | afdec5241d0bdeb88583f520c75d6f4de2d583d7 (diff) | |
download | sonarqube-8260558f49f1ea651f69206a943ac1e3eaa814b1.tar.gz sonarqube-8260558f49f1ea651f69206a943ac1e3eaa814b1.zip |
Update the default url of the json file of editions
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java index 9b0390856ef..96e582f62ab 100644 --- a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java +++ b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java @@ -260,7 +260,7 @@ public class CorePropertyDefinitions { // EDITIONS PropertyDefinition.builder(EDITIONS_CONFIG_URL) .name("Defines URL of JSON file with the definitions of SonarSource editions.") - .defaultValue("https://resources.sonarsource.com/editions.json") + .defaultValue("https://update.sonarsource.org/editions.json") .category(CATEGORY_ORGANIZATIONS) .type(BOOLEAN) .hidden() |