You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
521 B
Kotlin

plugins {
application
}
dependencies {
implementation(project(":wizard-common"))
implementation(JLine.id)
implementation(Jansi.id)
implementation(JavaWebSocket.id)
implementation("org.ajbrown:name-machine:1.0.0")
implementation(PicoCLI.core)
implementation(PicoCLI.shell_jline3) {
exclude(group = JLine.group) // prevent duplicates with org.jline:jline
}
annotationProcessor(PicoCLI.codegen)
}
application {
mainClass.set("eu.jonahbauer.wizard.client.cli.Client")
}