JIDE: the library on Maven Central no longer depends on com.jidesoft:jide-oss:3.6.18 to avoid problems when another JIDE library should be used (issue #270)

This commit is contained in:
Karl Tauber
2021-03-19 16:22:24 +01:00
parent 14577c396d
commit 4299c50537
2 changed files with 6 additions and 1 deletions

View File

@@ -21,7 +21,9 @@ plugins {
dependencies {
implementation( project( ":flatlaf-core" ) )
implementation( "com.jidesoft:jide-oss:3.6.18" )
// use compileOnly() because there are various JIDE libraries available on Maven Central
compileOnly( "com.jidesoft:jide-oss:3.6.18" )
}
java {