Skip to content

Commit

Permalink
Merge pull request #1 from jumpingpxl/patch-1
Browse files Browse the repository at this point in the history
fix workflow
  • Loading branch information
R0bbyYT committed Jun 17, 2023
2 parents 0d2293f + 41d884a commit 669ac5c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

java {
javaVersion(JavaVersion.VERSION_1_8)
javaVersion(JavaVersion.VERSION_17)
}

dependencies {
Expand All @@ -21,11 +21,11 @@ dependencies {
tasks {
compileJava {
options.encoding = "utf-8"
targetCompatibility = JavaVersion.VERSION_1_8.toString()
sourceCompatibility = JavaVersion.VERSION_1_8.toString()
targetCompatibility = JavaVersion.VERSION_17.toString()
sourceCompatibility = JavaVersion.VERSION_17.toString()
}

getByName<Test>("test") {
useJUnitPlatform()
}
}
}

0 comments on commit 669ac5c

Please sign in to comment.