1
-
2
1
plugins {
3
2
id ' antlr'
4
3
id ' checkstyle'
@@ -36,7 +35,7 @@ dependencies {
36
35
implementation libs. confluent. json. schema. serializer
37
36
38
37
implementation libs. aws. msk. auth
39
- implementation (libs. azure. identity) {
38
+ implementation(libs. azure. identity) {
40
39
exclude group : ' io.netty' , module : ' netty-tcnative-boringssl-static'
41
40
}
42
41
@@ -46,7 +45,7 @@ dependencies {
46
45
implementation libs. antlr. runtime
47
46
48
47
implementation libs. opendatadiscovery. oddrn
49
- implementation (libs. opendatadiscovery. client) {
48
+ implementation(libs. opendatadiscovery. client) {
50
49
exclude group : ' org.springframework.boot' , module : ' spring-boot-starter-webflux'
51
50
exclude group : ' io.projectreactor' , module : ' reactor-core'
52
51
exclude group : ' io.projectreactor.ipc' , module : ' reactor-netty'
@@ -82,6 +81,8 @@ dependencies {
82
81
testImplementation libs. bytebuddy
83
82
testImplementation libs. assertj
84
83
testImplementation libs. jsonschemavalidator
84
+ testImplementation(libs. kafka. clients) { artifact { classifier = " test" } }
85
+ testImplementation libs. bouncycastle. bcpkix
85
86
86
87
testImplementation libs. okhttp3
87
88
testImplementation libs. okhttp3. mockwebserver
@@ -123,7 +124,7 @@ tasks.register('buildDockerImageTask', DockerBuildImage) {
123
124
inputDir = projectDir
124
125
dockerFile = project. layout. projectDirectory. file(' Dockerfile' )
125
126
buildArgs = [
126
- ' JAR_FILE' : " build/libs/${ project.name} -${ project.version} .jar"
127
+ ' JAR_FILE' : " build/libs/${ project.name} -${ project.version} .jar"
127
128
] as Map<String , String >
128
129
images. add(" ghcr.io/kafbat/kafka-ui:${ project.version} " )
129
130
}
0 commit comments