Skip to content

Commit

Permalink
Fix one Gradle warning
Browse files Browse the repository at this point in the history
  • Loading branch information
centic9 committed Dec 25, 2024
1 parent 70d28ac commit df91dfa
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions poishadow/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ plugins {
id 'com.github.johnrengelman.shadow' version '7.1.2'
}

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

repositories {
mavenCentral()
Expand Down

0 comments on commit df91dfa

Please sign in to comment.