Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zourzouvillys committed Oct 11, 2023
1 parent ade4006 commit 10f0d21
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 25 deletions.
8 changes: 4 additions & 4 deletions client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -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
13 changes: 7 additions & 6 deletions netty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,20 @@ 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 {
api project(':api')
}

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'
}


Expand Down
28 changes: 14 additions & 14 deletions pump/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}

Expand All @@ -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'
}


0 comments on commit 10f0d21

Please sign in to comment.