We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9e7f55 commit 694eb0cCopy full SHA for 694eb0c
app/build.gradle.kts
@@ -353,6 +353,7 @@ tasks.register<Download>("includeJdk") {
353
into(composeResources(""))
354
}
355
356
+ finalizedBy("prepareAppResources")
357
358
tasks.register<Copy>("includeSharedAssets"){
359
from("../build/shared/")
@@ -510,7 +511,6 @@ afterEvaluate {
510
511
dependsOn(
512
"includeCore",
513
"includeJavaMode",
- "includeJdk",
514
"includeSharedAssets",
515
"includeProcessingExamples",
516
"includeProcessingWebsiteExamples",
@@ -538,7 +538,7 @@ afterEvaluate {
538
539
540
tasks.named("createDistributable").configure {
541
- dependsOn("signResources")
+ dependsOn("signResources", "includeJdk")
542
finalizedBy("setExecutablePermissions")
543
544
-}
+}
0 commit comments