2020-06-17 19:22:19 -04:00
|
|
|
plugins {
|
|
|
|
id 'org.jetbrains.kotlin.jvm' version "$kotlinVersion"
|
|
|
|
id 'application'
|
|
|
|
}
|
|
|
|
|
|
|
|
version = '0.1.1'
|
|
|
|
|
2020-06-17 19:38:20 -04:00
|
|
|
mainClassName = 'me.msoucy.gbat.MainKt'
|
2020-06-17 19:22:19 -04:00
|
|
|
description = 'My Application'
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2020-06-21 17:25:38 -04:00
|
|
|
jcenter()
|
2020-06-17 19:22:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
|
2020-06-21 17:25:38 -04:00
|
|
|
implementation "com.xenomachina:kotlin-argparser:$kotlin_argparser_version"
|
2020-07-03 10:55:03 -04:00
|
|
|
implementation "org.jetbrains.exposed:exposed-core:0.25.1"
|
|
|
|
implementation "org.jetbrains.exposed:exposed-dao:0.25.1"
|
|
|
|
implementation "org.jetbrains.exposed:exposed-jdbc:0.25.1"
|
|
|
|
compile("org.xerial:sqlite-jdbc:3.30.1")
|
2020-06-17 19:22:19 -04:00
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
}
|