aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-06-02 10:07:42 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-06-05 09:54:05 +0200
commit492a4f4f833ce18ccbf682e149140333b38ed3c8 (patch)
treefa1ea9a5467c080bbb3ed289461273a0f93d700e /server/sonar-web/src
parente91748ef0d6157611e58ced80d741908b9d4571e (diff)
downloadsonarqube-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.rb2
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