spierce7
12/29/2022, 5:54 AMorg.gradle.configureondemand=true
, but now I have an issue when building my app. I create a task, and have that task depend on a task from another project. That task doesn't exist yet.
val myTask: Task = tasks.create("myTask") {
val projectB = project(":projectB")
dependsOn(projectB.tasks["jsBrowserProductionWebpack"])
doLast {
...
}
}
What is the correct way to work around this?hfhbd
12/29/2022, 10:22 AMjsBrowserProductionWebpack
as your inputs only, because Gradle is able to resolve the tasks creating these outputsVampire
12/29/2022, 11:42 AMhfhbd
12/29/2022, 11:53 AMVampire
12/29/2022, 12:11 PM