android-finance-tracker/server/build.gradle
2018-02-19 20:51:36 -05:00

44 lines
No EOL
825 B
Groovy

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.junit.platform:junit-platform-gradle-plugin:+"
}
}
plugins {
id "us.kirchmeier.capsule" version '1.0.2'
id 'application'
}
apply plugin: 'kotlin'
group 'online.anthonycicchetti'
version '0.1.0'
mainClassName = 'MainKt'
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile project(":common")
testCompile commonJunitCompile
testRuntime commonJunitRuntime
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
task fatCapsule(type: FatCapsule) {
applicationClass 'MainKt'
}