Darklaf - A themeable swing Look and Feel based on Darcula-Laf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|