From 10f0d2170a2d437415e7f5dccf8a422c3276bfcf Mon Sep 17 00:00:00 2001 From: Theo Zourzouvillys Date: Wed, 11 Oct 2023 00:36:03 -0700 Subject: [PATCH] update dependencies --- client/build.gradle | 8 +++---- gradle/wrapper/gradle-wrapper.properties | 2 +- netty/build.gradle | 13 ++++++----- pump/build.gradle | 28 ++++++++++++------------ 4 files changed, 26 insertions(+), 25 deletions(-) diff --git a/client/build.gradle b/client/build.gradle index 779704a..0275f3f 100644 --- a/client/build.gradle +++ b/client/build.gradle @@ -9,10 +9,10 @@ dependencies { } dependencies { - annotationProcessor 'org.immutables:value:2.8.8' - compileOnly 'org.immutables:value-annotations:2.8.8' - implementation 'com.google.guava:guava:31.1-jre' - implementation 'io.netty:netty-handler:4.1.51.Final' + annotationProcessor 'org.immutables:value:2.10.0' + compileOnly 'org.immutables:value-annotations:2.10.0' + implementation 'com.google.guava:guava:32.1.3-jre' + implementation 'io.netty:netty-handler' } apply plugin: 'maven-publish' diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 37aef8d..744c64d 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/netty/build.gradle b/netty/build.gradle index a443ea5..b54974d 100644 --- a/netty/build.gradle +++ b/netty/build.gradle @@ -3,8 +3,8 @@ plugins { } dependencies { - implementation 'com.google.guava:guava:31.1-jre' - implementation 'org.slf4j:slf4j-api:1.7.36' + implementation 'com.google.guava:guava:32.1.3-jre' + implementation 'org.slf4j:slf4j-api:2.0.9' } dependencies { @@ -12,10 +12,11 @@ dependencies { } dependencies { - api 'io.netty:netty-handler:4.1.77.Final' - api 'io.netty:netty-transport:4.1.77.Final' - api 'io.netty:netty-codec:4.1.77.Final' - implementation 'io.netty:netty-codec-http2:4.1.77.Final' + api platform('io.netty:netty-bom:4.1.100.Final') + api 'io.netty:netty-handler' + api 'io.netty:netty-transport' + api 'io.netty:netty-codec' + implementation 'io.netty:netty-codec-http2' } diff --git a/pump/build.gradle b/pump/build.gradle index b2d20b6..ee13acb 100644 --- a/pump/build.gradle +++ b/pump/build.gradle @@ -41,24 +41,24 @@ application { dependencies { - implementation platform('io.netty:netty-bom:4.1.93.Final') - implementation platform('software.amazon.awssdk:bom:2.20.73') - implementation platform('com.fasterxml.jackson:jackson-bom:2.15.1') - implementation platform('io.micrometer:micrometer-bom:1.11.0') + implementation platform('io.netty:netty-bom:4.1.100.Final') + implementation platform('software.amazon.awssdk:bom:2.20.162') + implementation platform('com.fasterxml.jackson:jackson-bom:2.15.2') + implementation platform('io.micrometer:micrometer-bom:1.11.5') - annotationProcessor 'org.immutables:value:2.9.3' - compileOnly 'org.immutables:value-annotations:2.9.3' + annotationProcessor 'org.immutables:value:2.10.0' + compileOnly 'org.immutables:value-annotations:2.10.0' implementation 'software.amazon.awssdk:auth' implementation 'software.amazon.awssdk:sts' implementation 'software.amazon.awssdk:sns' implementation 'software.amazon.awssdk:kinesis' implementation 'software.amazon.awssdk:netty-nio-client' - implementation 'software.amazon.kinesis:amazon-kinesis-client:2.5.0' + implementation 'software.amazon.kinesis:amazon-kinesis-client:2.5.2' - implementation 'info.picocli:picocli:4.7.3' + implementation 'info.picocli:picocli:4.7.5' - implementation ('net.openhft:chronicle-queue:5.24ea16') { + implementation ('net.openhft:chronicle-queue:5.24ea26') { exclude group: 'net.openhft', module: 'affinity' } @@ -76,17 +76,17 @@ dependencies { dependencies { implementation project(':client') - implementation 'com.google.guava:guava:31.1-jre' + implementation 'com.google.guava:guava:32.1.3-jre' implementation 'io.micrometer:micrometer-core' implementation 'io.micrometer:micrometer-registry-statsd' - implementation 'org.slf4j:slf4j-api:2.0.7' - runtimeOnly 'org.slf4j:slf4j-simple:2.0.7' + implementation 'org.slf4j:slf4j-api:2.0.9' + runtimeOnly 'org.slf4j:slf4j-simple:2.0.9' } dependencies { - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.3' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.3' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0' }