1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2025-01-29 01:59:38 +01:00

16 lines
401 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-jdk7:$kotlin_version"
2018-01-29 09:50:37 +09:00
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
sourceCompatibility = "1.7"
targetCompatibility = "1.7"