pluginManagement { plugins { fun String.v() = extra["$this.version"].toString() fun PluginDependenciesSpec.idv(id: String, key: String = id) = id(id) version key.v() idv("com.github.johnrengelman.shadow") idv("com.github.vlsi.crlf", "com.github.vlsi.vlsi-release-plugins") idv("com.github.vlsi.gradle-extensions", "com.github.vlsi.vlsi-release-plugins") idv("com.github.vlsi.ide", "com.github.vlsi.vlsi-release-plugins") idv("com.github.vlsi.license-gather", "com.github.vlsi.vlsi-release-plugins") idv("com.github.vlsi.stage-vote-release", "com.github.vlsi.vlsi-release-plugins") } } rootProject.name = "darklaf" include( "dependencies-bom", "native-utils", "core", "windows", "property-loader", "utils" ) for (p in rootProject.children) { if (p.children.isEmpty()) { // Rename leaf projects only // E.g. we don't expect to publish examples as a Maven module p.name = "darklaf-" + p.name } }