Skip to content
This repository has been archived by the owner on Jan 3, 2025. It is now read-only.

Commit

Permalink
Update JVM target
Browse files Browse the repository at this point in the history
MarkusAmshove committed Oct 19, 2022

Verified

This commit was signed with the committer’s verified signature.
MarkusAmshove Markus Amshove
1 parent d1f1efb commit 7f0fc0d
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ ext {

allprojects {
group 'org.amshove.kluent'
version '1.70'
version '1.71'

apply plugin: 'com.adarshr.test-logger'

@@ -69,8 +69,8 @@ subprojects {
}

def isAndroid = project.rootProject.hasProperty("ANDROID")
sourceCompatibility = isAndroid ? 1.6 : 1.8
targetCompatibility = isAndroid ? 1.6 : 1.8
sourceCompatibility = 1.8
targetCompatibility = 1.8

publishing {
repositories {
4 changes: 2 additions & 2 deletions common/build.gradle
Original file line number Diff line number Diff line change
@@ -10,8 +10,8 @@ dependencies {

configurePublishing()

sourceCompatibility = 1.6
targetCompatibility = 1.6
sourceCompatibility = 1.8
targetCompatibility = 1.8

compileKotlinCommon {
kotlinOptions {
2 changes: 1 addition & 1 deletion jvm/build.gradle
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@ sourceSets {

tasks.withType(compileKotlin.getClass()) {
kotlinOptions {
jvmTarget = isAndroid ? '1.6' : '1.8'
jvmTarget = '1.8'

freeCompilerArgs += [
'-Xuse-experimental=kotlin.Experimental'

0 comments on commit 7f0fc0d

Please sign in to comment.