Skip to content

Commit a5514a4

Browse files
committed
ok, this time?
1 parent 8fa3817 commit a5514a4

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

api/build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
plugins {
32
id 'antlr'
43
id 'checkstyle'
@@ -36,7 +35,7 @@ dependencies {
3635
implementation libs.confluent.json.schema.serializer
3736

3837
implementation libs.aws.msk.auth
39-
implementation (libs.azure.identity) {
38+
implementation(libs.azure.identity) {
4039
exclude group: 'io.netty', module: 'netty-tcnative-boringssl-static'
4140
}
4241

@@ -46,7 +45,7 @@ dependencies {
4645
implementation libs.antlr.runtime
4746

4847
implementation libs.opendatadiscovery.oddrn
49-
implementation (libs.opendatadiscovery.client) {
48+
implementation(libs.opendatadiscovery.client) {
5049
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-webflux'
5150
exclude group: 'io.projectreactor', module: 'reactor-core'
5251
exclude group: 'io.projectreactor.ipc', module: 'reactor-netty'
@@ -82,7 +81,7 @@ dependencies {
8281
testImplementation libs.bytebuddy
8382
testImplementation libs.assertj
8483
testImplementation libs.jsonschemavalidator
85-
testImplementation libs.kafka.clients
84+
testImplementation(libs.kafka.clients) { artifact { classifier = "test" } }
8685
testImplementation libs.bouncycastle.bcpkix
8786

8887
testImplementation libs.okhttp3
@@ -125,7 +124,7 @@ tasks.register('buildDockerImageTask', DockerBuildImage) {
125124
inputDir = projectDir
126125
dockerFile = project.layout.projectDirectory.file('Dockerfile')
127126
buildArgs = [
128-
'JAR_FILE': "build/libs/${project.name}-${project.version}.jar"
127+
'JAR_FILE': "build/libs/${project.name}-${project.version}.jar"
129128
] as Map<String, String>
130129
images.add("ghcr.io/kafbat/kafka-ui:${project.version}")
131130
}

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ assertj = '3.25.3'
1414
avro = '1.11.4'
1515
byte-buddy = '1.14.19'
1616
confluent = '7.9.0'
17-
confluent-ccs = '7.8.0-ccs'
17+
confluent-ccs = '7.9.0-ccs'
1818

1919
mapstruct = '1.6.2'
2020
lombok = '1.18.34'

0 commit comments

Comments
 (0)