diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-01-05 18:46:00 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-01-10 09:56:54 +0100 |
commit | 7ee49838b7b3d4e657b80669a3bbf58d5658a220 (patch) | |
tree | f33369e4eabe123b0d715d7e930927c36d93177c /it/it-plugins | |
parent | 2cf9f9bbdf41647d6d4176ae1bd15f5f9d0d2d57 (diff) | |
download | sonarqube-7ee49838b7b3d4e657b80669a3bbf58d5658a220.tar.gz sonarqube-7ee49838b7b3d4e657b80669a3bbf58d5658a220.zip |
SONAR-7300 Replace "setting.license" by "setting.license.secured" in IT plugin
Diffstat (limited to 'it/it-plugins')
-rw-r--r-- | it/it-plugins/server-plugin/src/main/java/ServerPlugin.java | 2 |
1 files changed, 1 insertions, 1 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 1b77a575c8a..9b7b820dbaa 100644 --- a/it/it-plugins/server-plugin/src/main/java/ServerPlugin.java +++ b/it/it-plugins/server-plugin/src/main/java/ServerPlugin.java @@ -50,7 +50,7 @@ import static org.sonar.api.PropertyType.USER_LOGIN; @Property(key = "float", name = "Float", type = FLOAT, global = true, project = false), @Property(key = "int", name = "Integer", type = INTEGER, global = true, project = false), @Property(key = "string", name = "String", type = STRING, global = true, project = false), - @Property(key = "setting.license", name = "License", type = LICENSE, global = true, project = false), + @Property(key = "setting.license.secured", name = "License", type = LICENSE, global = true, project = false), @Property(key = "long", name = "Long", type = LONG, global = true, project = false), @Property(key = "password", name = "Password", type = PASSWORD, global = true, project = false), @Property(key = "text", name = "Text", type = TEXT, global = true, project = false), |