You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings.gradle 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. rootProject.name = 'sonarqube'
  2. include 'plugins:sonar-xoo-plugin'
  3. include 'server:sonar-ce'
  4. include 'server:sonar-db-testing'
  5. include 'server:sonar-db-core'
  6. include 'server:sonar-db-dao'
  7. include 'server:sonar-db-migration'
  8. include 'server:sonar-main'
  9. include 'server:sonar-plugin-bridge'
  10. include 'server:sonar-process'
  11. include 'server:sonar-qa-util'
  12. include 'server:sonar-server'
  13. include 'server:sonar-vsts'
  14. include 'server:sonar-web'
  15. include 'sonar-application'
  16. include 'sonar-check-api'
  17. include 'sonar-core'
  18. include 'sonar-duplications'
  19. include 'sonar-home'
  20. include 'sonar-markdown'
  21. include 'sonar-plugin-api'
  22. include 'sonar-plugin-api-deps'
  23. include 'sonar-scanner-engine'
  24. include 'sonar-scanner-engine-shaded'
  25. include 'sonar-scanner-protocol'
  26. include 'sonar-testing-harness'
  27. include 'sonar-ws'
  28. include 'sonar-ws-generator'
  29. include 'tests:plugins:access-secured-props-plugin'
  30. include 'tests:plugins:backdating-customplugin'
  31. include 'tests:plugins:backdating-plugin-v1'
  32. include 'tests:plugins:backdating-plugin-v2'
  33. include 'tests:plugins:base-auth-plugin'
  34. include 'tests:plugins:batch-plugin'
  35. include 'tests:plugins:extension-lifecycle-plugin'
  36. include 'tests:plugins:fake-billing-plugin'
  37. include 'tests:plugins:fake-governance-plugin'
  38. include 'tests:plugins:foo-plugin-v1'
  39. include 'tests:plugins:foo-plugin-v2'
  40. include 'tests:plugins:global-property-change-plugin'
  41. include 'tests:plugins:issue-filter-plugin'
  42. include 'tests:plugins:l10n-fr-pack'
  43. include 'tests:plugins:license-plugin'
  44. include 'tests:plugins:oauth2-auth-plugin'
  45. include 'tests:plugins:posttask-plugin'
  46. include 'tests:plugins:project-builder-plugin'
  47. include 'tests:plugins:property-relocation-plugin'
  48. include 'tests:plugins:property-sets-plugin'
  49. include 'tests:plugins:security-plugin'
  50. include 'tests:plugins:server-plugin'
  51. include 'tests:plugins:settings-encryption-plugin'
  52. include 'tests:plugins:settings-plugin'
  53. include 'tests:plugins:sonar-fake-plugin'
  54. include 'tests:plugins:sonar-subcategories-plugin'
  55. include 'tests:plugins:ui-extensions-plugin'
  56. include 'tests:plugins:wait-at-platform-level4-plugin'
  57. include 'tests:plugins:ws-plugin'
  58. include 'tests'
  59. // use Settings.getRootDir() so that it doesn't matter which directory you are executing from
  60. File extraSettings = new File(rootDir, 'private/settings.gradle')
  61. if (extraSettings.exists()) {
  62. apply from: extraSettings
  63. }