1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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'
|