Initial basic ping pong websocket app in vertx.
This commit is contained in:
parent
321c890178
commit
b0c8930568
13 changed files with 654 additions and 0 deletions
21
2024/08/chat_demo1/chat_demo1_web/build.gradle.kts
Normal file
21
2024/08/chat_demo1/chat_demo1_web/build.gradle.kts
Normal file
|
@ -0,0 +1,21 @@
|
|||
plugins {
|
||||
id("java")
|
||||
}
|
||||
|
||||
group = "ch.polgrabia.demos"
|
||||
version = "1.0-SNAPSHOT"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("io.vertx:vertx-core:4.5.9")
|
||||
implementation("ch.qos.logback:logback-classic:1.5.6")
|
||||
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
||||
testImplementation("org.junit.jupiter:junit-jupiter")
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
useJUnitPlatform()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue