]> source.dussan.org Git - sonarqube.git/commitdiff
Remove test properties
authorDavid Gageot <david@gageot.net>
Thu, 4 Oct 2012 16:56:11 +0000 (18:56 +0200)
committerDavid Gageot <david@gageot.net>
Thu, 4 Oct 2012 17:16:45 +0000 (19:16 +0200)
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java

index c059833d500ed0c3802fc36947baa239ff7c0be7..c32b14de1c7c24c5a09aa528a5cde8158fab2836 100644 (file)
@@ -24,7 +24,6 @@ import org.sonar.api.CoreProperties;
 import org.sonar.api.Extension;
 import org.sonar.api.Properties;
 import org.sonar.api.Property;
-import org.sonar.api.PropertyField;
 import org.sonar.api.PropertyType;
 import org.sonar.api.SonarPlugin;
 import org.sonar.api.checks.NoSonarFilter;
@@ -127,79 +126,6 @@ import java.util.List;
     project = false,
     global = true,
     category = CoreProperties.CATEGORY_GENERAL),
-  @Property(
-    key = "sonar.test.jira.servers",
-    name = "Jira Servers",
-    description = "List of jira server definitions",
-    global = true,
-    project = true,
-    category = "DEV",
-    fields = {
-      @PropertyField(
-        key = "key",
-        name = "Key",
-        type = PropertyType.STRING,
-        indicativeSize = 10),
-      @PropertyField(
-        key = "url",
-        name = "Url",
-        description = "l'url du serveur jira",
-        type = PropertyType.STRING,
-        indicativeSize = 20),
-      @PropertyField(
-        key = "port",
-        name = "Port",
-        type = PropertyType.INTEGER,
-        indicativeSize = 5)}),
-  @Property(
-    key = "sonar.demo",
-    name = "Demo",
-    global = true,
-    project = true,
-    category = "DEV",
-    fields = {
-      @PropertyField(
-        key = "text",
-        name = "text",
-        type = PropertyType.TEXT),
-      @PropertyField(
-        key = "boolean",
-        name = "boolean",
-        type = PropertyType.BOOLEAN),
-      @PropertyField(
-        key = "float",
-        name = "float",
-        type = PropertyType.FLOAT),
-      @PropertyField(
-        key = "license",
-        name = "license",
-        type = PropertyType.LICENSE),
-      @PropertyField(
-        key = "metric",
-        name = "metric",
-        type = PropertyType.METRIC,
-        options = {"regexp_on_key: new_.*"}
-      ),
-      @PropertyField(
-        key = "password",
-        name = "password",
-        type = PropertyType.PASSWORD),
-      @PropertyField(
-        key = "regexp",
-        name = "regexp",
-        type = PropertyType.REGULAR_EXPRESSION),
-      @PropertyField(
-        key = "list",
-        name = "list",
-        type = PropertyType.SINGLE_SELECT_LIST,
-        options = {"AAA", "BBB"})}),
-  @Property(
-    key = "sonar.test.jira",
-    name = "Jira",
-    project = true,
-    category = "DEV",
-    type = PropertyType.PROPERTY_SET,
-    propertySetKey = "sonar.test.jira.servers"),
   @Property(
     key = CoreProperties.PROJECT_LANGUAGE_PROPERTY,
     defaultValue = Java.KEY,