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.

19 lines
422 B
Kotlin

plugins {
application
}
dependencies {
implementation(JLine.id)
implementation(Jansi.id)
implementation(JavaWebSocket.id)
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")
}