mirror of
https://github.com/HighCapable/KavaRef.git
synced 2025-12-10 15:23:50 +08:00
44 lines
840 B
Plaintext
44 lines
840 B
Plaintext
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.highcapable.gropify") version "1.0.0"
|
|
}
|
|
|
|
gropify {
|
|
global {
|
|
jvm {
|
|
includeKeys(
|
|
"^project\\..*\$".toRegex(),
|
|
"^gradle\\..*\$".toRegex()
|
|
)
|
|
isRestrictedAccessEnabled = true
|
|
}
|
|
}
|
|
|
|
rootProject {
|
|
common {
|
|
isEnabled = false
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "KavaRef"
|
|
|
|
include(":kavaref-core", ":kavaref-extension", "kavaref-android-stub")
|
|
include(":samples:kavaref-demo") |