settings.gradle 684 B

12345678910111213141516171819202122232425262728293031
  1. pluginManagement {
  2. repositories {
  3. gradlePluginPortal()
  4. google()
  5. mavenCentral()
  6. }
  7. }
  8. dependencyResolutionManagement {
  9. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  10. repositories {
  11. google()
  12. mavenCentral()
  13. maven {
  14. allowInsecureProtocol = true
  15. credentials {
  16. username "$atmob_maven_username"
  17. password "$atmob_maven_password"
  18. }
  19. url "$atmob_maven_url/repository/android-group/"
  20. }
  21. }
  22. }
  23. rootProject.name = "xm-common"
  24. include ':app'
  25. include ':network'
  26. include ':common'
  27. include ':rxjava'
  28. include ':user'
  29. include ':room-rx'