mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2026-02-11 06:27:13 -06:00
Gradle: moved declaration of all external dependencies to libs.versions.toml and use Gradle version catalog
This commit is contained in:
59
gradle/libs.versions.toml
Normal file
59
gradle/libs.versions.toml
Normal file
@@ -0,0 +1,59 @@
|
||||
#
|
||||
# Copyright 2023 FormDev Software GmbH
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
[versions]
|
||||
junit = "5.7.2"
|
||||
|
||||
|
||||
[libraries]
|
||||
|
||||
# flatlaf-core
|
||||
sigtest = "org.netbeans.tools:sigtest-maven-plugin:1.7"
|
||||
|
||||
# flatlaf-extras
|
||||
svgSalamander = "com.formdev:svgSalamander:1.1.3"
|
||||
|
||||
# flatlaf-jide-oss
|
||||
jide-oss = "com.formdev:jide-oss:3.7.12"
|
||||
|
||||
# flatlaf-swingx
|
||||
swingx-all = "org.swinglabs.swingx:swingx-all:1.6.5-1"
|
||||
swingx-beaninfo = "org.swinglabs.swingx:swingx-beaninfo:1.6.5-1"
|
||||
|
||||
# flatlaf-demo
|
||||
miglayout-swing = "com.miglayout:miglayout-swing:5.3"
|
||||
jgoodies-forms = "com.jgoodies:jgoodies-forms:1.9.0"
|
||||
|
||||
# flatlaf-theme-editor
|
||||
fifesoft-rsyntaxtextarea = "com.fifesoft:rsyntaxtextarea:3.1.4"
|
||||
fifesoft-autocomplete = "com.fifesoft:autocomplete:3.1.3"
|
||||
|
||||
# flatlaf-testing
|
||||
glazedlists = "com.glazedlists:glazedlists:1.11.0"
|
||||
netbeans-api-awt = "org.netbeans.api:org-openide-awt:RELEASE112"
|
||||
|
||||
# flatlaf-natives-jna
|
||||
jna = "net.java.dev.jna:jna:5.12.1"
|
||||
jna-platform = "net.java.dev.jna:jna-platform:5.12.1"
|
||||
|
||||
# junit
|
||||
junit-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" }
|
||||
junit-params = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "junit" }
|
||||
junit-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" }
|
||||
|
||||
|
||||
[bundles]
|
||||
junit = [ "junit-api", "junit-params" ]
|
||||
Reference in New Issue
Block a user