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.
38 lines
1.3 KiB
38 lines
1.3 KiB
5 years ago
|
plugins {
|
||
|
`java-platform`
|
||
|
}
|
||
|
|
||
|
val String.v: String get() = rootProject.extra["$this.version"] as String
|
||
|
|
||
|
// Note: Gradle allows to declare dependency on "bom" as "api",
|
||
|
// and it makes the contraints to be transitively visible
|
||
|
// However Maven can't express that, so the approach is to use Gradle resolution
|
||
|
// and generate pom files with resolved versions
|
||
|
// See https://github.com/gradle/gradle/issues/9866
|
||
|
|
||
|
fun DependencyConstraintHandlerScope.apiv(
|
||
|
notation: String,
|
||
|
versionProp: String = notation.substringAfterLast(':')
|
||
|
) =
|
||
|
"api"(notation + ":" + versionProp.v)
|
||
|
|
||
|
fun DependencyConstraintHandlerScope.runtimev(
|
||
|
notation: String,
|
||
|
versionProp: String = notation.substringAfterLast(':')
|
||
|
) =
|
||
|
"runtime"(notation + ":" + versionProp.v)
|
||
|
|
||
|
dependencies {
|
||
|
// Parenthesis are needed here: https://github.com/gradle/gradle/issues/9248
|
||
|
(constraints) {
|
||
|
// api means "the dependency is for both compilation and runtime"
|
||
|
// runtime means "the dependency is only for runtime, not for compilation"
|
||
|
// In other words, marking dependency as "runtime" would avoid accidental
|
||
|
// dependency on it during compilation
|
||
|
apiv("net.java.dev.jna:jna")
|
||
|
apiv("org.swinglabs:jxlayer")
|
||
|
apiv("org.swinglabs:swingx")
|
||
|
apiv("com.formdev:svgSalamander")
|
||
|
}
|
||
|
}
|