Bump deps

This commit is contained in:
crschnick
2025-04-01 04:59:11 +00:00
parent 4c454a1b4b
commit 6110df09a4
4 changed files with 19 additions and 15 deletions
+6 -2
View File
@@ -124,7 +124,7 @@ project.ext {
website = 'https://xpipe.io'
sourceWebsite = isStage ? 'https://github.com/xpipe-io/xpipe-ptb' : 'https://github.com/xpipe-io/xpipe'
authors = 'Christopher Schnick'
javafxVersion = '24-ea+5'
devJavafxVersion = '25-ea+10'
platformName = getPlatformName()
jvmRunArgs = [
"--add-opens", "java.base/java.lang=io.xpipe.app",
@@ -165,8 +165,12 @@ project.ext {
signingPassword = ''
}
deeplApiKey = findProperty('DEEPL_API_KEY')
customJavaFxPath = null
// Define a custom JavaFX SDK location
// customJavaFxPath = null
bundleCds = ci && fullVersion
windowsSchemaCanonicalVersion = getWindowsSchemaCanonicalVersion()
}
+1 -1
View File
@@ -3,7 +3,7 @@ plugins {
id 'org.beryx.jlink' version '3.1.1'
id "org.asciidoctor.jvm.convert" version "4.0.4"
id 'org.jreleaser' version '1.15.0'
id("com.netflix.nebula.ospackage") version "11.11.1"
id("com.netflix.nebula.ospackage") version "11.11.2"
id 'org.gradle.crypto.checksum' version '1.4.0'
id 'signing'
}
+6 -6
View File
@@ -18,7 +18,7 @@ configurations {
javafx
}
if (customJavaFxPath != null) {
if (rootProject.hasProperty("customJavaFxPath")) {
repositories {
flatDir {
dirs customJavaFxPath
@@ -30,10 +30,10 @@ if (customJavaFxPath != null) {
} else {
// Always use maven version for now
dependencies {
javafx "org.openjfx:javafx-base:${javafxVersion}:${platform}"
javafx "org.openjfx:javafx-controls:${javafxVersion}:${platform}"
javafx "org.openjfx:javafx-graphics:${javafxVersion}:${platform}"
javafx "org.openjfx:javafx-media:${javafxVersion}:${platform}"
javafx "org.openjfx:javafx-web:${javafxVersion}:${platform}"
javafx "org.openjfx:javafx-base:${devJavafxVersion}:${platform}"
javafx "org.openjfx:javafx-controls:${devJavafxVersion}:${platform}"
javafx "org.openjfx:javafx-graphics:${devJavafxVersion}:${platform}"
javafx "org.openjfx:javafx-media:${devJavafxVersion}:${platform}"
javafx "org.openjfx:javafx-web:${devJavafxVersion}:${platform}"
}
}
+6 -6
View File
@@ -1,16 +1,16 @@
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
testCompileOnly 'org.projectlombok:lombok:1.18.30'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.30'
compileOnly 'org.projectlombok:lombok:1.18.38'
annotationProcessor 'org.projectlombok:lombok:1.18.38'
testCompileOnly 'org.projectlombok:lombok:1.18.38'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.38'
}
testing {
suites {
configureEach {
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
compileOnly 'org.projectlombok:lombok:1.18.38'
annotationProcessor 'org.projectlombok:lombok:1.18.38'
}
}
}