Initial commit

This commit is contained in:
2025-11-11 16:16:56 +08:00
commit 45c7ca94e9
94 changed files with 9808 additions and 0 deletions

46
settings.gradle.kts Normal file
View 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")