mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
Bump versions [stage]
This commit is contained in:
parent
e4d9545fe8
commit
cad35a6876
9 changed files with 18 additions and 18 deletions
|
@ -38,16 +38,16 @@ dependencies {
|
|||
|
||||
api files("$rootDir/gradle/gradle_scripts/markdowngenerator-1.3.1.1.jar")
|
||||
api 'info.picocli:picocli:4.7.5'
|
||||
api 'org.kohsuke:github-api:1.318'
|
||||
api 'io.sentry:sentry:7.3.0'
|
||||
api 'org.ocpsoft.prettytime:prettytime:5.0.2.Final'
|
||||
api 'org.kohsuke:github-api:1.321'
|
||||
api 'io.sentry:sentry:7.6.0'
|
||||
api 'org.ocpsoft.prettytime:prettytime:5.0.7.Final'
|
||||
api 'commons-io:commons-io:2.15.1'
|
||||
api 'net.java.dev.jna:jna-jpms:5.14.0'
|
||||
api 'net.java.dev.jna:jna-platform-jpms:5.14.0'
|
||||
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.16.1"
|
||||
api group: 'com.fasterxml.jackson.module', name: 'jackson-module-parameter-names', version: "2.16.1"
|
||||
api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.16.1"
|
||||
api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: "2.16.1"
|
||||
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.17.0"
|
||||
api group: 'com.fasterxml.jackson.module', name: 'jackson-module-parameter-names', version: "2.17.0"
|
||||
api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.17.0"
|
||||
api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: "2.17.0"
|
||||
api group: 'org.kordamp.ikonli', name: 'ikonli-material2-pack', version: "12.2.0"
|
||||
api group: 'org.kordamp.ikonli', name: 'ikonli-materialdesign2-pack', version: "12.2.0"
|
||||
api group: 'org.kordamp.ikonli', name: 'ikonli-javafx', version: "12.2.0"
|
||||
|
|
|
@ -74,7 +74,7 @@ project.ext {
|
|||
website = 'https://xpipe.io'
|
||||
sourceWebsite = 'https://github.com/xpipe-io/xpipe'
|
||||
authors = 'Christopher Schnick'
|
||||
javafxVersion = '22-ea+27'
|
||||
javafxVersion = '22'
|
||||
platformName = getPlatformName()
|
||||
artifactChecksums = new HashMap<String, String>()
|
||||
jvmRunArgs = [
|
||||
|
|
|
@ -13,10 +13,10 @@ compileJava {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.16.1"
|
||||
implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-parameter-names', version: "2.16.1"
|
||||
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.16.1"
|
||||
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: "2.16.1"
|
||||
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.17.0"
|
||||
implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-parameter-names', version: "2.17.0"
|
||||
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.17.0"
|
||||
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: "2.17.0"
|
||||
}
|
||||
|
||||
version = rootProject.versionString
|
||||
|
|
2
dist/build.gradle
vendored
2
dist/build.gradle
vendored
|
@ -3,7 +3,7 @@ plugins {
|
|||
id 'org.beryx.jlink' version '3.0.1'
|
||||
id "org.asciidoctor.jvm.convert" version "4.0.2"
|
||||
id 'org.jreleaser' version '1.8.0'
|
||||
id("com.netflix.nebula.ospackage") version "11.4.0"
|
||||
id("com.netflix.nebula.ospackage") version "11.8.1"
|
||||
id 'org.gradle.crypto.checksum' version '1.4.0'
|
||||
id 'signing'
|
||||
}
|
||||
|
|
2
dist/licenses/github-api.properties
vendored
2
dist/licenses/github-api.properties
vendored
|
@ -1,4 +1,4 @@
|
|||
name=Java API for GitHub
|
||||
version=1.318
|
||||
version=1.321
|
||||
license=MIT License
|
||||
link=https://github.com/hub4j/github-api
|
2
dist/licenses/jackson.properties
vendored
2
dist/licenses/jackson.properties
vendored
|
@ -1,4 +1,4 @@
|
|||
name=Jackson Databind
|
||||
version=2.16.1
|
||||
version=2.17.0
|
||||
license=Apache License 2.0
|
||||
link=https://github.com/FasterXML/jackson-databind
|
2
dist/licenses/prettytime.properties
vendored
2
dist/licenses/prettytime.properties
vendored
|
@ -1,4 +1,4 @@
|
|||
name=Prettytime
|
||||
version=5.0.2.Final
|
||||
version=5.0.7.Final
|
||||
license=Apache License 2.0
|
||||
link=https://github.com/ocpsoft/prettytime
|
2
dist/licenses/sentry.properties
vendored
2
dist/licenses/sentry.properties
vendored
|
@ -1,4 +1,4 @@
|
|||
name=Sentry Java
|
||||
version=7.3.0
|
||||
version=7.6.0
|
||||
license=MIT License
|
||||
link=https://github.com/getsentry/sentry-java
|
|
@ -61,7 +61,7 @@ configurations {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.16.1"
|
||||
compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.17.0"
|
||||
compileOnly project(':core')
|
||||
compileOnly project(':beacon')
|
||||
compileOnly project(':app')
|
||||
|
|
Loading…
Reference in a new issue