From 1dd700dcc96f31dd3f88825be5e10ca1624c0804 Mon Sep 17 00:00:00 2001 From: dotasek Date: Wed, 17 Apr 2024 10:57:42 -0400 Subject: [PATCH] Bump dependencies (#163) commons-compress json solrj http2-client --- build.gradle.kts | 14 ++++++++------ gradle.properties | 4 ++-- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index b673a40..1ff2712 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -62,7 +62,7 @@ dependencies { implementation("commons-logging", "commons-logging-api", "1.1") implementation("commons-logging", "commons-logging", "1.1.1") implementation("commons-net", "commons-net", "3.9") - implementation("org.apache.commons", "commons-compress", "1.25.0") + implementation("org.apache.commons", "commons-compress", "1.26.1") implementation("org.apache.commons", "commons-exec", "1.3") implementation("com.trilead", "trilead-ssh2", "1.0.0-build217") implementation("de.regnis.q.sequence", "sequence-library", "1.0.2") @@ -111,7 +111,7 @@ dependencies { implementation("org.slf4s", "slf4s-api_2.11", "1.7.13") implementation("com.typesafe.scala-logging", "scala-logging_2.12", "3.5.0") implementation("com.github.everit-org.json-schema", "org.everit.json.schema", "1.14.3") - implementation("org.json", "json", "20231013") + implementation("org.json", "json", "20240303") implementation("com.google.code.javaparser", "javaparser", "1.0.11") implementation("com.google.guava", "guava", "32.1.3-jre") implementation("com.damnhandy", "handy-uri-templates", "2.1.6") @@ -161,7 +161,7 @@ dependencies { implementation("org.apache.jena:jena-shex:4.9.0") { because("previous versions have a bug impacting this application") } - implementation("org.apache.solr:solr-solrj:9.4.0") { + implementation("org.apache.solr:solr-solrj:9.5.0") { because("previous versions have a bug impacting this application") } implementation("org.apache.jena:jena-shacl:4.9.0") { @@ -173,15 +173,17 @@ dependencies { implementation("com.squareup.okio:okio-jvm:3.4.0") { because("previous versions have a bug impacting this application") } - implementation("org.apache.zookeeper:zookeeper:3.9.1") { + implementation("org.apache.zookeeper:zookeeper:3.9.2") { because("previous versions have a bug impacting this application") } - implementation("org.eclipse.jetty.http2:http2-client:11.0.17") { + + implementation("org.eclipse.jetty.http2:http2-client:11.0.20") { because("previous versions have a bug impacting this application") } - implementation("org.eclipse.jetty.http2:http2-http-client-transport:11.0.17") { + implementation("org.eclipse.jetty.http2:http2-http-client-transport:11.0.20") { because("previous versions have a bug impacting this application") } + implementation("io.netty:netty-handler:" + property("nettyConstrainedVersion").toString()) { because("previous versions have a bug impacting this application") } diff --git a/gradle.properties b/gradle.properties index fdfd921..47d4657 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,11 +3,11 @@ apachePoiVersion = 5.2.1 jacksonVersion = 2.16.0 apacheHttpcomponentsVersion = 4.5.13 apacheHttpcomponents5Version = 5.0.4 -apacheJenaVersion = 4.2.0 +apacheJenaVersion = 4.10.0 log4jVersion = 2.17.1 slf4jVersion = 1.7.36 -jettyVersion = 11.0.17 +jettyVersion = 11.0.20 logbackVersion = 1.2.13 nettyConstrainedVersion = 4.1.101.Final