Skip to content

Commit

Permalink
JVM target 1.6 compatibility; push version to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
h0tk3y committed Aug 1, 2017
1 parent e7fdbf9 commit b2db73d
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
group 'com.github.h0tk3y.betterParse'
version '0.2'

wrapper {
gradleVersion = '3.3'
}
version '0.2.1'

buildscript {
ext.kotlin_version = '1.1.3-2'
Expand All @@ -25,15 +21,16 @@ repositories {
}

dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testCompile "junit:junit:4.12"
}

compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.jvmTarget = "1.6"
}

compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.jvmTarget = "1.6"
}

kotlin.experimental.coroutines "enable"
Expand Down Expand Up @@ -96,4 +93,4 @@ bintray {
}
}
}
}
}

0 comments on commit b2db73d

Please sign in to comment.