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")