]> source.dussan.org Git - sonarqube.git/commitdiff
Remove test properties
authorDavid Gageot <david@gageot.net>
Fri, 5 Oct 2012 12:14:54 +0000 (14:14 +0200)
committerDavid Gageot <david@gageot.net>
Fri, 5 Oct 2012 13:52:44 +0000 (15:52 +0200)
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java

index 890a0d74e78988c74685544880923ae90b205f24..4ac7f0012329774001b1848f431181690fed0613 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;
@@ -167,77 +166,6 @@ import java.util.List;
     project = false,
     global = false,
     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),
-      @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,