build.gradle.kts: flatlaf-extras and flatlaf-swingx are now Java modules

flatlaf-jide-oss is not a Java module because jide-oss.jar does not run on the module path (tries to access private Windows LaF classes)
This commit is contained in:
Karl Tauber
2020-05-09 15:32:25 +02:00
parent 2656c2dc40
commit db933fee4f
4 changed files with 72 additions and 0 deletions

View File

@@ -16,6 +16,7 @@
plugins {
`java-library`
`flatlaf-module-info`
`flatlaf-publish`
}
@@ -24,6 +25,10 @@ dependencies {
implementation( "org.swinglabs.swingx:swingx-all:1.6.5-1" )
}
flatlafModuleInfo {
dependsOn( ":flatlaf-core:jar" )
}
java {
withSourcesJar()
withJavadocJar()