diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-02 10:07:42 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-05 09:54:05 +0200 |
commit | 492a4f4f833ce18ccbf682e149140333b38ed3c8 (patch) | |
tree | fa1ea9a5467c080bbb3ed289461273a0f93d700e /server/sonar-web/src | |
parent | e91748ef0d6157611e58ced80d741908b9d4571e (diff) | |
download | sonarqube-492a4f4f833ce18ccbf682e149140333b38ed3c8.tar.gz sonarqube-492a4f4f833ce18ccbf682e149140333b38ed3c8.zip |
SONAR-6370 fix classpath with core libs like SLF4J
Diffstat (limited to 'server/sonar-web/src')
-rw-r--r-- | server/sonar-web/src/main/webapp/WEB-INF/app/controllers/api/updatecenter_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/api/updatecenter_controller.rb b/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/api/updatecenter_controller.rb index 74833832017..c6e83dfe35b 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/api/updatecenter_controller.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/controllers/api/updatecenter_controller.rb @@ -65,6 +65,6 @@ class Api::UpdatecenterController < Api::ApiController end def user_plugins - java_facade.getPluginInfos().select{|plugin| !plugin.isCore()}.to_a.sort + java_facade.getPluginInfos().to_a.sort end end |