settings.gradle.kts 532 B

12345678910111213141516171819202122232425262728293031
  1. rootProject.name = "逻辑狗一起成长"
  2. pluginManagement {
  3. includeBuild("built")
  4. repositories {
  5. google()
  6. mavenCentral()
  7. gradlePluginPortal()
  8. }
  9. }
  10. dependencyResolutionManagement {
  11. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  12. repositories {
  13. google()
  14. mavenCentral()
  15. }
  16. }
  17. include(":app")
  18. include(":core:http")
  19. include(":data:model")
  20. include(":data:local")
  21. include(":data:remote")
  22. include(":feat:common")
  23. include(":feat:home")
  24. include(":data:repo")