35 lines
1.1 KiB
Groovy
35 lines
1.1 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven { url "https://maven.aliyun.com/repository/google" }
|
|
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
|
|
maven { url 'https://maven.aliyun.com/repository/public' }
|
|
maven { url 'https://maven.aliyun.com/repository/jcenter' }
|
|
maven { url 'https://maven.aliyun.com/repository/central' }
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
|
|
maven { url "https://maven.aliyun.com/repository/google" }
|
|
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
|
|
maven { url 'https://maven.aliyun.com/repository/public' }
|
|
maven { url 'https://maven.aliyun.com/repository/jcenter' }
|
|
maven { url 'https://maven.aliyun.com/repository/central' }
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
|
|
}
|
|
}
|
|
rootProject.name = "OMQualityInspection"
|
|
include ':app'
|
|
include ':collect-library'
|