Skip to content

Commit

Permalink
Fixed build, reachability metadata still missing io.jsonwebtoken.impl…
Browse files Browse the repository at this point in the history
….security.StandardSecureDigestAlgorithms
  • Loading branch information
3arthqu4ke committed Jan 22, 2025
1 parent 539d21d commit 1c475cd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ allprojects {
}
}

if (rootProject.hmc_graal_build) {
if (hmc_graal_build.toBoolean()) {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
} else {
Expand Down
4 changes: 2 additions & 2 deletions headlessmc-launcher/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ shadowJar {
dependsOn shadowBugWorkaround
from shadowBugWorkaround

if (!hmc_graal_build) {
if (!hmc_graal_build.toBoolean()) {
// TODO: fix this, since it breaks graalvm, because the resource is not available!!!
// ignore the forge-cli jar from processResources as it will get expanded
// that the runtime and lwjgl jars get expanded isnt problematic
Expand All @@ -122,7 +122,7 @@ shadowJar {
graalvmNative {
agent {
defaultMode = "standard"
enabled = rootProject.hmc_graal_build
enabled = hmc_graal_build.toBoolean()
}
binaries {
main {
Expand Down
2 changes: 1 addition & 1 deletion headlessmc-modlauncher/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if (!rootProject.hmc_graal_build) {
if (!hmc_graal_build.toBoolean()) {
sourceSets {
java9stub
main {
Expand Down

0 comments on commit 1c475cd

Please sign in to comment.