git-by-a-truck/build.gradle
2020-06-17 19:38:20 -04:00

22 lines
374 B
Groovy

plugins {
id 'org.jetbrains.kotlin.jvm' version "$kotlinVersion"
id 'application'
}
version = '0.1.1'
mainClassName = 'me.msoucy.gbat.MainKt'
description = 'My Application'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
testImplementation 'junit:junit:4.12'
}