settings.gradle.kts 789 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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:common")
  19. include(":core:http")
  20. include(":core:auth")
  21. include(":core:json")
  22. include(":core:event")
  23. include(":core:nav")
  24. include(":core:navx")
  25. include(":data:model")
  26. include(":data:database")
  27. include(":data:local")
  28. include(":data:remote")
  29. include(":data:repo")
  30. include(":data:domain")
  31. include(":feat:design")
  32. include(":feat:home")
  33. include(":feat:baby")
  34. include(":feat:settings")
  35. include(":feat:webview")