Fix JDK requirement for debug builds

This commit is contained in:
Stef Tervelde
2025-03-20 10:08:22 +01:00
committed by GitHub
parent b9e7f55cb3
commit 694eb0cbec

View File

@@ -353,6 +353,7 @@ tasks.register<Download>("includeJdk") {
into(composeResources(""))
}
}
finalizedBy("prepareAppResources")
}
tasks.register<Copy>("includeSharedAssets"){
from("../build/shared/")
@@ -510,7 +511,6 @@ afterEvaluate {
dependsOn(
"includeCore",
"includeJavaMode",
"includeJdk",
"includeSharedAssets",
"includeProcessingExamples",
"includeProcessingWebsiteExamples",
@@ -538,7 +538,7 @@ afterEvaluate {
}
}
tasks.named("createDistributable").configure {
dependsOn("signResources")
dependsOn("signResources", "includeJdk")
finalizedBy("setExecutablePermissions")
}
}
}