Am I able to customize what `pulumi up` runs in my...
# java
m
Am I able to customize what
pulumi up
runs in my Gradle app? Right now, it just runs
gradlew run
, but this doesn't work because I have a multi-module project. I want to change it to something like
gradlew run :tools:pulumi:run
Was able to get this to work by moving the
Pulimi.yaml
under the module's directory and setting the work dir to the module's directory
b
Hi @mysterious-pizza-71836, I ran into the same Problem. My solution was a separate gradle project in the same repo. Your solution is more elegant, yet, your initial proposition was what I was looking for as well.