mirror of
https://github.com/tateisu/SubwayTooter
synced 2025-01-13 18:08:04 +01:00
14 lines
410 B
Groovy
14 lines
410 B
Groovy
apply plugin: 'java-library'
|
|
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
//noinspection DifferentStdlibGradleVersion
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
|
|
testImplementation "junit:junit:$junit_version"
|
|
}
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|