Skip to content

Commit

Permalink
use java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
trOnk12 committed Oct 5, 2023
1 parent f8204c1 commit 9d67c04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ android {
}
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = '1.8'
Expand Down Expand Up @@ -162,7 +162,6 @@ dependencies {
// ktlint
ktlintRuleset project(":custom-ktlint-rules")


implementation "org.jacoco:org.jacoco.core:0.8.10"
}

Expand Down
4 changes: 2 additions & 2 deletions custom-ktlint-rules/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ plugins {
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

dependencies {
Expand Down

0 comments on commit 9d67c04

Please sign in to comment.