Skip to content

Commit b2db73d

Browse files
committed
JVM target 1.6 compatibility; push version to 0.2.1
1 parent e7fdbf9 commit b2db73d

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

build.gradle

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
group 'com.github.h0tk3y.betterParse'
2-
version '0.2'
3-
4-
wrapper {
5-
gradleVersion = '3.3'
6-
}
2+
version '0.2.1'
73

84
buildscript {
95
ext.kotlin_version = '1.1.3-2'
@@ -25,15 +21,16 @@ repositories {
2521
}
2622

2723
dependencies {
28-
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
24+
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2925
testCompile "junit:junit:4.12"
3026
}
3127

3228
compileKotlin {
33-
kotlinOptions.jvmTarget = "1.8"
29+
kotlinOptions.jvmTarget = "1.6"
3430
}
31+
3532
compileTestKotlin {
36-
kotlinOptions.jvmTarget = "1.8"
33+
kotlinOptions.jvmTarget = "1.6"
3734
}
3835

3936
kotlin.experimental.coroutines "enable"
@@ -96,4 +93,4 @@ bintray {
9693
}
9794
}
9895
}
99-
}
96+
}

0 commit comments

Comments
 (0)