pluginManagement { repositories { gradlePluginPortal() google() mavenCentral() } } dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { allowInsecureProtocol = true credentials { username "$atmob_maven_username" password "$atmob_maven_password" } url "$atmob_maven_url/repository/android-group/" } } } rootProject.name = "xm-common" include ':app' include ':network' include ':common' include ':rxjava' include ':user' include ':room-rx'