44 lines
No EOL
808 B
Groovy
44 lines
No EOL
808 B
Groovy
import com.anthonycicchetti.financetracker.DependencyVersions
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}"
|
|
}
|
|
}
|
|
|
|
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()
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${DependencyVersions.Kotlin}"
|
|
implementation project(":common")
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
|
|
task fatCapsule(type: FatCapsule) {
|
|
applicationClass 'MainKt'
|
|
} |