mirror of
https://github.com/fankes/ProjectPromote.git
synced 2025-12-10 15:23:43 +08:00
27 lines
579 B
Plaintext
27 lines
579 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://jitpack.io")
|
|
}
|
|
}
|
|
plugins {
|
|
id("com.highcapable.gropify") version "1.0.1"
|
|
}
|
|
gropify {
|
|
global {
|
|
android { isEnabled = false }
|
|
}
|
|
rootProject { common { isEnabled = false } }
|
|
}
|
|
rootProject.name = "ProjectPromote"
|
|
include(":demo-app")
|
|
include(":projectpromote") |