From 0cce88c450f2796702bbdc6bfbe05b35b752327e Mon Sep 17 00:00:00 2001 From: David Gageot Date: Fri, 5 Oct 2012 14:14:54 +0200 Subject: [PATCH] Remove test properties --- .../org/sonar/plugins/core/CorePlugin.java | 72 ------------------- 1 file changed, 72 deletions(-) diff --git a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java index 890a0d74e78..4ac7f001232 100644 --- a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java +++ b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java @@ -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, -- 2.39.5