diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-09-08 14:45:22 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-09-09 11:54:40 +0200 |
commit | 96fb42e56d1eceaae36808f62b773ce941e3bc68 (patch) | |
tree | 945e203edfe3f0497371dcc4330641ee3a2da2a3 /it/it-plugins | |
parent | 3f9038d37914bf973701e6f2c5c8fa980c451a0a (diff) | |
download | sonarqube-96fb42e56d1eceaae36808f62b773ce941e3bc68.tar.gz sonarqube-96fb42e56d1eceaae36808f62b773ce941e3bc68.zip |
Add ITs for api/properties WS
Diffstat (limited to 'it/it-plugins')
-rw-r--r-- | it/it-plugins/server-plugin/src/main/java/ServerPlugin.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/it/it-plugins/server-plugin/src/main/java/ServerPlugin.java b/it/it-plugins/server-plugin/src/main/java/ServerPlugin.java index 84f4845aa2d..6564f138c55 100644 --- a/it/it-plugins/server-plugin/src/main/java/ServerPlugin.java +++ b/it/it-plugins/server-plugin/src/main/java/ServerPlugin.java @@ -35,11 +35,13 @@ import org.sonar.api.SonarPlugin; @Property(key = "float", name = "Float", type = PropertyType.FLOAT, global = true, project = false), @Property(key = "int", name = "Integer", type = PropertyType.INTEGER, global = true, project = false), @Property(key = "string", name = "String", type = PropertyType.STRING, global = true, project = false), - @Property(key = "license", name = "License", type = PropertyType.LICENSE, global = true, project = false), + @Property(key = "setting.license", name = "License", type = PropertyType.LICENSE, global = true, project = false), @Property(key = "long", name = "Long", type = PropertyType.LONG, global = true, project = false), @Property(key = "password", name = "Password", type = PropertyType.PASSWORD, global = true, project = false), @Property(key = "text", name = "Text", type = PropertyType.TEXT, global = true, project = false), - @Property(key = "multi", name = "Multi", type = PropertyType.STRING, multiValues = true, global = true, project = false) + @Property(key = "multi", name = "Multi", type = PropertyType.STRING, multiValues = true, global = true, project = false), + @Property(key = "hidden", name = "Hidden", type = PropertyType.STRING, global = false, project = false), + @Property(key = "setting.secured", name = "Secured", type = PropertyType.STRING, global = true, project = false) }) public class ServerPlugin extends SonarPlugin { public List getExtensions() { |