1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2025-02-03 20:27:40 +01:00

14 lines
410 B
Groovy
Raw Normal View History

apply plugin: 'java-library'
apply plugin: 'kotlin'
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
2018-09-15 01:36:05 +09:00
//noinspection DifferentStdlibGradleVersion
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2018-01-29 09:50:37 +09:00
testImplementation "junit:junit:$junit_version"
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8