From b7e73ea7bd925ade9625a97c1a1419c1cee6ccd6 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Fri, 18 Sep 2015 00:14:11 +0200 Subject: SONAR-6861 Drop the property "sonar.preventAutoProjectCreation" --- .../src/main/java/org/sonar/core/config/SecurityProperties.java | 8 -------- 1 file changed, 8 deletions(-) (limited to 'sonar-core') diff --git a/sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java b/sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java index 5c40e31aa1c..83db2ed80dd 100644 --- a/sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java +++ b/sonar-core/src/main/java/org/sonar/core/config/SecurityProperties.java @@ -55,14 +55,6 @@ class SecurityProperties { .description("Forcing user authentication stops un-logged users to access SonarQube.") .type(PropertyType.BOOLEAN) .category(CoreProperties.CATEGORY_SECURITY) - .build(), - - PropertyDefinition.builder(CoreProperties.CORE_PREVENT_AUTOMATIC_PROJECT_CREATION) - .defaultValue(Boolean.toString(false)) - .name("Prevent automatic project creation") - .description("Set to true to prevent automatic project creation at first analysis and force project provisioning.") - .type(PropertyType.BOOLEAN) - .category(CoreProperties.CATEGORY_SECURITY) .build() ); -- cgit v1.2.3