2018-01-27 20:00:44 +09:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2018-09-15 01:36:05 +09:00
|
|
|
//noinspection DifferentStdlibGradleVersion
|
2018-01-27 20:00:44 +09:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2018-01-29 09:50:37 +09:00
|
|
|
|
2018-03-27 17:10:36 +09:00
|
|
|
testImplementation group: 'junit', name: 'junit', version: '4.12'
|
2018-01-27 20:00:44 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = "1.7"
|
|
|
|
targetCompatibility = "1.7"
|
|
|
|
|
|
|
|
|