aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java74
1 files changed, 0 insertions, 74 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 c059833d500..c32b14de1c7 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;
@@ -128,79 +127,6 @@ import java.util.List;
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,
name = "Default language",