2024-08-01 14:28:09 +00:00
|
|
|
plugins {
|
2025-01-24 00:17:38 +00:00
|
|
|
id("java")
|
2024-08-01 14:28:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
group = "ch.polgrabia.demos"
|
|
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
|
|
|
|
repositories {
|
2025-01-24 00:17:38 +00:00
|
|
|
mavenCentral()
|
2024-08-01 14:28:09 +00:00
|
|
|
}
|
|
|
|
|
2025-01-24 00:17:38 +00:00
|
|
|
val vertxVersion = project.ext.get("vertx.version")
|
2024-08-01 14:28:09 +00:00
|
|
|
dependencies {
|
2025-01-24 00:17:38 +00:00
|
|
|
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")
|
2024-08-01 14:28:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.test {
|
2025-01-24 00:17:38 +00:00
|
|
|
useJUnitPlatform()
|
2024-08-01 14:28:09 +00:00
|
|
|
}
|