43 lines
817 B
Groovy
43 lines
817 B
Groovy
import com.anthonycicchetti.financetracker.DependencyVersions
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}"
|
|
classpath "com.github.jengelman.gradle.plugins:shadow:${DependencyVersions.Server.Shadow}"
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.github.johnrengelman.shadow' version '4.0.2'
|
|
id 'application'
|
|
id '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"
|
|
}
|
|
|