settings.gradle 969 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. pluginManagement {
  2. repositories {
  3. gradlePluginPortal()
  4. maven { url 'https://repo.spring.io/plugins-release' }
  5. }
  6. }
  7. apply from: "$rootDir/gradle/build-cache-settings.gradle"
  8. include "spring-aop"
  9. include "spring-aspects"
  10. include "spring-beans"
  11. include "spring-context"
  12. include "spring-context-support"
  13. include "spring-context-indexer"
  14. include "spring-core"
  15. include "kotlin-coroutines"
  16. project(':kotlin-coroutines').projectDir = file('spring-core/kotlin-coroutines')
  17. include "spring-expression"
  18. include "spring-instrument"
  19. include "spring-jcl"
  20. include "spring-jdbc"
  21. include "spring-jms"
  22. include "spring-messaging"
  23. include "spring-orm"
  24. include "spring-oxm"
  25. include "spring-test"
  26. include "spring-tx"
  27. include "spring-web"
  28. include "spring-webmvc"
  29. include "spring-webflux"
  30. include "spring-websocket"
  31. include "framework-bom"
  32. include "integration-tests"
  33. rootProject.name = "spring"
  34. rootProject.children.each {project ->
  35. project.buildFileName = "${project.name}.gradle"
  36. }