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.
81 lines
2.7 KiB
81 lines
2.7 KiB
import com.github.vlsi.gradle.crlf.CrLfSpec |
|
import com.github.vlsi.gradle.crlf.LineEndings |
|
|
|
plugins { |
|
`java-library` |
|
id("com.github.johnrengelman.shadow") |
|
id("com.github.vlsi.crlf") |
|
} |
|
|
|
dependencies { |
|
implementation(project(":darklaf-theme")) |
|
implementation(project(":darklaf-native-utils")) |
|
implementation(project(":darklaf-utils")) |
|
implementation(project(":darklaf-platform-base")) |
|
implementation(project(":darklaf-windows")) |
|
implementation(project(":darklaf-macos")) |
|
implementation(project(":darklaf-property-loader")) |
|
implementation("org.swinglabs:jxlayer") |
|
compileOnly("org.swinglabs:swingx") |
|
testImplementation("com.formdev:svgSalamander") |
|
testImplementation("com.miglayout:miglayout-core") |
|
testImplementation("com.miglayout:miglayout-swing") |
|
testImplementation("org.swinglabs:swingx") |
|
} |
|
|
|
tasks.jar { |
|
CrLfSpec(LineEndings.LF).run { |
|
into("META-INF") { |
|
filteringCharset = "UTF-8" |
|
textFrom("licenses/NOTICE.txt") |
|
textFrom("licenses/DARCULA_LICENSE.txt") |
|
textFrom("licenses/PBJAR_LICENSE.txt") |
|
textFrom("licenses/INTELLIJ_LICENSE.txt") |
|
} |
|
} |
|
} |
|
|
|
project.properties |
|
.filter { it.key.startsWith("demoClass") } |
|
.forEach { |
|
val name = it.key.split(".")[1] |
|
rootProject.tasks.register(name, JavaExec::class) { |
|
group = "Demo" |
|
description = "Run the demo '$name'." |
|
dependsOn(tasks.testClasses) |
|
|
|
workingDir = File(project.rootDir, "build") |
|
workingDir.mkdirs() |
|
main = it.value?.toString() ?: throw GradleException("Main class for demo ``$name` not specified.") |
|
classpath(sourceSets.main.get().runtimeClasspath, sourceSets.test.get().runtimeClasspath) |
|
} |
|
} |
|
|
|
val makeDocumentation by tasks.registering(JavaExec::class) { |
|
group = "Development" |
|
description = "Builds the documentation" |
|
dependsOn(tasks.testClasses) |
|
|
|
workingDir = File(project.rootDir, "build") |
|
workingDir.mkdirs() |
|
main = "documentation.CreateUITable" |
|
classpath(sourceSets.main.get().runtimeClasspath, sourceSets.test.get().runtimeClasspath) |
|
} |
|
|
|
tasks.shadowJar { |
|
exclude("help/") |
|
exclude("icons/") |
|
exclude("org/jdesktop/jxlayer/plaf/ext/images/") |
|
exclude("com/sun/jna/darwin/") |
|
exclude("com/sun/jna/freebsd-x86/") |
|
exclude("com/sun/jna/freebsd-x86-64/") |
|
exclude("com/sun/jna/linux-arm/") |
|
exclude("com/sun/jna/linux-x86/") |
|
exclude("com/sun/jna/linux-x86-64/") |
|
exclude("com/sun/jna/openbsd-x86/") |
|
exclude("com/sun/jna/openbsd-x86-64/") |
|
exclude("com/sun/jna/sunos-sparc/") |
|
exclude("com/sun/jna/sunos-sparcv9/") |
|
exclude("com/sun/jna/sunos-x86/") |
|
exclude("com/sun/jna/sunos-x86-64/") |
|
}
|
|
|