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