mirror of https://github.com/weisJ/darklaf.git
darculadarcula-themefeelguihacktoberfestintellijintellij-themelaflooklookandfeelnativesolarizedsolarized-dark-themesolarized-light-themesvgswingthemethemes
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.
35 lines
1.0 KiB
35 lines
1.0 KiB
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", |
|
"theme", |
|
"property-loader", |
|
"utils", |
|
"platform-base", |
|
"windows", |
|
"macos" |
|
) |
|
|
|
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 |
|
} |
|
}
|
|
|