Skip to content

Commit ecde660

Browse files
committed
Update javafx to v25-ea+6
1 parent 2d3ab71 commit ecde660

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

gradle/libs.versions.toml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[versions]
2-
javamodularity-moduleplugin = '1.8.15'
32
sonarqube = '6.0.1.5171'
43
jacocolog = '3.1.0'
54
spotbugs = '6.1.6'
@@ -8,8 +7,6 @@ nebula-lint = '20.5.6'
87
jgitver = '0.10.0-rc03'
98

109
jspecify = '1.0.0'
11-
junit = '5.12.0'
12-
junit-platform-launcher = '1.12.0'
1310
assertj = '3.27.3'
1411

1512
javafxplugin = '0.1.0'
@@ -24,7 +21,6 @@ javafx = '25-ea+6'
2421
inject-api = '2.0.1'
2522

2623
[plugins]
27-
javamodularity-moduleplugin = { id = 'org.javamodularity.moduleplugin', version.ref = 'javamodularity-moduleplugin' }
2824
sonarqube = { id = 'org.sonarqube', version.ref = 'sonarqube' }
2925
jacocolog = { id = 'org.barfuin.gradle.jacocolog', version.ref = 'jacocolog' }
3026
spotbugs = { id = 'com.github.spotbugs', version.ref = 'spotbugs' }
@@ -39,10 +35,9 @@ spring-dependency-management = { id = 'io.spring.dependency-management', version
3935
[libraries]
4036
jspecify = { module = 'org.jspecify:jspecify', version.ref = 'jspecify' }
4137

42-
junit = { module = 'org.junit:junit-bom', version.ref = 'junit' }
43-
junit-jupiter = { module = 'org.junit.jupiter:junit-jupiter', version.ref = 'junit' }
44-
junit-jupiter-api = { module = 'org.junit.jupiter:junit-jupiter-api', version.ref = 'junit' }
45-
junit-platform-launcher = { module = 'org.junit.platform:junit-platform-launcher', version.ref = 'junit-platform-launcher' }
38+
junit-jupiter = { module = 'org.junit.jupiter:junit-jupiter' }
39+
junit-jupiter-api = { module = 'org.junit.jupiter:junit-jupiter-api' }
40+
junit-platform-launcher = { module = 'org.junit.platform:junit-platform-launcher' }
4641
assertj = { module = 'org.assertj:assertj-core', version.ref = 'assertj' }
4742

4843
javafx-base = { module = 'org.openjfx:javafx-base', version.ref = 'javafx' }

spring/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
plugins {
22
id 'application'
3-
alias(libs.plugins.javamodularity.moduleplugin)
43
alias(libs.plugins.javafxplugin)
54
alias(libs.plugins.springframework.boot)
65
alias(libs.plugins.spring.dependency.management)
@@ -18,15 +17,14 @@ dependencies {
1817

1918
implementation libs.inject.api
2019

21-
testImplementation(platform(libs.junit))
2220
testImplementation libs.junit.jupiter.api
2321
testImplementation libs.assertj
2422
testRuntimeOnly libs.junit.jupiter
2523
testRuntimeOnly libs.junit.platform.launcher
2624
}
2725

2826
javafx {
29-
version = '25-ea+1'
27+
version = '25-ea+6'
3028
modules = ['javafx.controls', 'javafx.fxml']
3129
configurations = ['implementation']
3230
}

0 commit comments

Comments
 (0)