Further refactorings of the client, vertx libs version upgraded.
This commit is contained in:
parent
74c1f2d94e
commit
093615aeab
5 changed files with 50 additions and 30 deletions
|
@ -1,23 +1,25 @@
|
|||
plugins {
|
||||
id("java")
|
||||
id("java")
|
||||
}
|
||||
|
||||
group = "ch.polgrabia.demos"
|
||||
version = "1.0-SNAPSHOT"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
val vertxVersion = project.ext.get("vertx.version")
|
||||
dependencies {
|
||||
implementation("commons-cli:commons-cli:1.9.0")
|
||||
implementation("io.vertx:vertx-core:4.5.9")
|
||||
implementation("ch.qos.logback:logback-classic:1.5.6")
|
||||
implementation("org.apache.kafka:kafka-clients:3.9.0")
|
||||
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
||||
testImplementation("org.junit.jupiter:junit-jupiter")
|
||||
implementation("commons-cli:commons-cli:1.9.0")
|
||||
implementation("io.vertx:vertx-core:$vertxVersion")
|
||||
implementation("io.vertx:vertx-web:$vertxVersion")
|
||||
implementation("ch.qos.logback:logback-classic:1.5.6")
|
||||
implementation("org.apache.kafka:kafka-clients:3.9.0")
|
||||
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
||||
testImplementation("org.junit.jupiter:junit-jupiter")
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
useJUnitPlatform()
|
||||
useJUnitPlatform()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue