mirror of
https://github.com/HighCapable/Gropify.git
synced 2025-12-08 14:13:44 +08:00
46 lines
797 B
Plaintext
46 lines
797 B
Plaintext
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.highcapable.gropify") version "1.0.1"
|
|
}
|
|
|
|
gropify {
|
|
global {
|
|
jvm {
|
|
includeKeys(
|
|
"^project\\..*\$".toRegex(),
|
|
"^gradle\\..*\$".toRegex()
|
|
)
|
|
|
|
className = rootProject.name
|
|
isRestrictedAccessEnabled = true
|
|
}
|
|
}
|
|
|
|
rootProject {
|
|
common {
|
|
isEnabled = false
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Gropify"
|
|
|
|
include(":gropify-gradle-plugin") |