Skip to content

Commit

Permalink
chore(deps): update java deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Apr 4, 2023
1 parent 36c51e5 commit c792164
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
// micronaut
id "com.github.johnrengelman.shadow" version "8.1.0"
id "com.github.johnrengelman.shadow" version "8.1.1"
id "io.micronaut.application" version "3.7.5"

// akhq
Expand Down Expand Up @@ -126,7 +126,7 @@ dependencies {
// Password hashing
implementation group: "org.mindrot", name: "jbcrypt", version: "0.4"

implementation group: 'org.codehaus.groovy', name: 'groovy-all', version: '3.0.16'
implementation group: 'org.codehaus.groovy', name: 'groovy-all', version: '3.0.17'
// api

// client
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
micronautVersion=3.8.7
confluentVersion=7.3.2
micronautVersion=3.8.8
confluentVersion=7.3.3
kafkaVersion=3.4.0
kafkaScalaVersion=2.13
lombokVersion=1.18.26
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class KsqlDbControllerTest extends AbstractTest {
void info() {
KsqlDbServerInfo serverInfo = this.retrieve(HttpRequest.GET(BASE_URL + "/info"), KsqlDbServerInfo.class);
assertNotNull(serverInfo.getKafkaClusterId());
assertEquals("7.3.2", serverInfo.getServerVersion());
assertEquals("7.3.3", serverInfo.getServerVersion());
assertEquals("ksql", serverInfo.getKsqlServiceId());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void cleanup() {
void getServerInfo() {
KsqlDbServerInfo serverInfo = repository.getServerInfo(KafkaTestCluster.CLUSTER_ID, "ksqldb");
assertNotNull(serverInfo.getKafkaClusterId());
assertEquals("7.3.2", serverInfo.getServerVersion());
assertEquals("7.3.3", serverInfo.getServerVersion());
assertEquals("ksql", serverInfo.getKsqlServiceId());
}

Expand Down

0 comments on commit c792164

Please sign in to comment.