mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-09-27 02:45:36 +00:00
Bump deps
This commit is contained in:
+6
-2
@@ -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()
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -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'
|
||||
}
|
||||
|
||||
@@ -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}"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user