Gradle: moved declaration of all external dependencies to libs.versions.toml and use Gradle version catalog

This commit is contained in:
Karl Tauber
2023-05-18 15:37:03 +02:00
parent e9fb2b3fdc
commit 9d84501bc8
13 changed files with 87 additions and 33 deletions

View File

@@ -24,7 +24,7 @@ dependencies {
implementation( project( ":flatlaf-core" ) )
// use compileOnly() because there are various JIDE libraries available on Maven Central
compileOnly( "com.formdev:jide-oss:3.7.12" )
compileOnly( libs.jide.oss )
}
java {