aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorDavid Gageot <david@gageot.net>2012-10-05 14:14:54 +0200
committerDavid Gageot <david@gageot.net>2012-10-05 15:52:44 +0200
commit0cce88c450f2796702bbdc6bfbe05b35b752327e (patch)
treed8e27c6fdbbbb63c1b1c0c2f3e92bd68e25c3c66 /plugins
parentcbb017dc1dc58f3175d7d9fcab9643c4beafc74a (diff)
downloadsonarqube-0cce88c450f2796702bbdc6bfbe05b35b752327e.tar.gz
sonarqube-0cce88c450f2796702bbdc6bfbe05b35b752327e.zip
Remove test properties
Diffstat (limited to 'plugins')
-rw-r--r--plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java72
1 files changed, 0 insertions, 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;
@@ -168,77 +167,6 @@ import java.util.List;
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,
name = "Default language",