pluginManagement { repositories { google { content { includeGroupByRegex("com\\.android.*") includeGroupByRegex("com\\.google.*") includeGroupByRegex("androidx.*") } } mavenCentral() gradlePluginPortal() mavenLocal() maven { url "http://192.168.1.38:8082/artifactory/ob-in-plugin/" credentials { username = repo_username password = repo_password } allowInsecureProtocol(true) } } } plugins { id "io.nexilis.dm-st-plugin" version "1.1" } dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { url 'https://jitpack.io' } maven { url "http://192.168.1.38:8082/artifactory/ui-uc-api-libs/" credentials { username = repo_username password = repo_password } setAllowInsecureProtocol(true) } maven { url "http://192.168.1.38:8082/artifactory/ss-libs/" credentials { username = repo_username password = repo_password } setAllowInsecureProtocol(true) } } } rootProject.name = "dm-plugin" include ':app' include ':dm-plugin' include ':dm-set-plugin'