ImAndroid/settings.gradle
2023-06-14 11:42:41 +08:00

31 行
802 B
Groovy

pluginManagement {
repositories {
maven {
url 'http://127.0.0.1:1022/repository/maven-public/'
allowInsecureProtocol true
}
maven {
url 'http://127.0.0.1:1022/repository/gradle-plugin/'
allowInsecureProtocol true
}
// google()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven {
url 'http://127.0.0.1:1022/repository/maven-public/'
allowInsecureProtocol true
}
maven {
url 'http://127.0.0.1:1022/repository/gradle-plugin/'
allowInsecureProtocol true
}
}
}
rootProject.name = "ImAndroid"
include ':app'
include ':SzyxImSdk'
include ':SzyxPushSdk'