mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 15:10:23 +00:00
Bump deps
This commit is contained in:
parent
52035d62ea
commit
c2f26f5fd4
7 changed files with 14 additions and 14 deletions
|
@ -23,8 +23,8 @@ dependencies {
|
|||
api project(':beacon')
|
||||
|
||||
compileOnly 'org.hamcrest:hamcrest:3.0'
|
||||
compileOnly 'org.junit.jupiter:junit-jupiter-api:5.11.0'
|
||||
compileOnly 'org.junit.jupiter:junit-jupiter-params:5.11.0'
|
||||
compileOnly 'org.junit.jupiter:junit-jupiter-api:5.11.3'
|
||||
compileOnly 'org.junit.jupiter:junit-jupiter-params:5.11.3'
|
||||
|
||||
api 'com.vladsch.flexmark:flexmark:0.64.8'
|
||||
api 'com.vladsch.flexmark:flexmark-util:0.64.8'
|
||||
|
@ -58,8 +58,8 @@ dependencies {
|
|||
api 'org.apache.commons:commons-lang3:3.17.0'
|
||||
api 'io.sentry:sentry:7.14.0'
|
||||
api 'commons-io:commons-io:2.16.1'
|
||||
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.17.2"
|
||||
api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.17.2"
|
||||
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.18.1"
|
||||
api group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.18.1"
|
||||
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"
|
||||
|
|
|
@ -17,8 +17,8 @@ repositories {
|
|||
|
||||
dependencies {
|
||||
compileOnly 'org.hamcrest:hamcrest:3.0'
|
||||
compileOnly 'org.junit.jupiter:junit-jupiter-api:5.11.0'
|
||||
compileOnly 'org.junit.jupiter:junit-jupiter-params:5.11.0'
|
||||
compileOnly 'org.junit.jupiter:junit-jupiter-api:5.11.3'
|
||||
compileOnly 'org.junit.jupiter:junit-jupiter-params:5.11.3'
|
||||
api project(':core')
|
||||
}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ buildscript {
|
|||
|
||||
plugins {
|
||||
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
|
||||
id 'org.gradlex.extra-java-module-info' version '1.8' apply false
|
||||
id 'org.gradlex.extra-java-module-info' version '1.9' apply false
|
||||
id("com.diffplug.spotless") version "6.25.0" apply false
|
||||
}
|
||||
|
||||
|
|
|
@ -13,8 +13,8 @@ compileJava {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.17.2"
|
||||
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.17.2"
|
||||
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.18.1"
|
||||
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.18.1"
|
||||
}
|
||||
|
||||
version = rootProject.versionString
|
||||
|
|
2
dist/licenses/jackson.properties
vendored
2
dist/licenses/jackson.properties
vendored
|
@ -1,4 +1,4 @@
|
|||
name=Jackson Databind
|
||||
version=2.17.2
|
||||
version=2.18.1
|
||||
license=Apache License 2.0
|
||||
link=https://github.com/FasterXML/jackson-databind
|
|
@ -67,7 +67,7 @@ configurations {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.17.2"
|
||||
compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.18.1"
|
||||
compileOnly project(':core')
|
||||
compileOnly project(':beacon')
|
||||
compileOnly project(':app')
|
||||
|
|
|
@ -2,9 +2,9 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent
|
|||
|
||||
dependencies {
|
||||
testImplementation 'org.hamcrest:hamcrest:3.0'
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.0'
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.0'
|
||||
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.0'
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
|
||||
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.11.3'
|
||||
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.3'
|
||||
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue