mirror of
https://github.com/HighCapable/Gropify.git
synced 2025-12-11 07:43:52 +08:00
Initial commit
This commit is contained in:
46
settings.gradle.kts
Normal file
46
settings.gradle.kts
Normal file
@@ -0,0 +1,46 @@
|
||||
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
||||
|
||||
pluginManagement {
|
||||
repositories {
|
||||
gradlePluginPortal()
|
||||
google()
|
||||
mavenCentral()
|
||||
mavenLocal()
|
||||
}
|
||||
}
|
||||
|
||||
dependencyResolutionManagement {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
google()
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id("com.highcapable.gropify") version "1.0.0"
|
||||
}
|
||||
|
||||
gropify {
|
||||
global {
|
||||
jvm {
|
||||
includeKeys(
|
||||
"^project\\..*\$".toRegex(),
|
||||
"^gradle\\..*\$".toRegex()
|
||||
)
|
||||
|
||||
className = rootProject.name
|
||||
isRestrictedAccessEnabled = true
|
||||
}
|
||||
}
|
||||
|
||||
rootProject {
|
||||
common {
|
||||
isEnabled = false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.name = "Gropify"
|
||||
|
||||
include(":gropify-gradle-plugin")
|
||||
Reference in New Issue
Block a user