switched build system from sbt to Gradle

This commit is contained in:
2021-06-16 08:14:33 +01:00
parent 6422a91568
commit 605e1ad644
21 changed files with 573 additions and 244 deletions

15
cli/build.gradle Normal file
View File

@@ -0,0 +1,15 @@
plugins {
id 'application'
id 'org.jetbrains.kotlin.jvm'
}
dependencies {
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: getProperty('version.kotlin')
implementation group: 'com.beust', name: 'jcommander', version: getProperty('version.jcommander')
implementation group: "org.slf4j", name: "slf4j-simple", version: getProperty('version.slf4j')
implementation rootProject
}
application {
mainClassName = 'net.woggioni.wson.cli.MainKt'
}