extracted dependencies info into Dependencies.kt
This commit is contained in:
19
wizard-client/wizard-client-cli/build.gradle.kts
Normal file
19
wizard-client/wizard-client-cli/build.gradle.kts
Normal file
@@ -0,0 +1,19 @@
|
||||
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")
|
||||
}
|
Reference in New Issue
Block a user