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;
project = false,
global = true,
category = CoreProperties.CATEGORY_GENERAL),
+ @Property(
+ key = "sonar.test.jira.servers",
+ name = "Jira Servers",
+ global = true,
+ project = true,
+ category = "DEV",
+ fields = {
+ @PropertyField(
+ key = "url",
+ name = "Url",
+ description = "l'url du serveur jira",
+ type = PropertyType.STRING),
+ @PropertyField(
+ key = "port",
+ name = "Port",
+ type = PropertyType.INTEGER)}),
@Property(
key = "sonar.test.jira",
name = "Jira",