We have a complex set of build.gradle scripts.
Is it possible to run a task without dependency checking of any kind?
e.g.
gradle run
should just start the jvm and nothing else?
Thank you.
If you want to exclude module dependencies, there is a -a, or --no-rebuild option to skip other subprojects/modules.
If you want to skip the compilation, or resources tasks, you can use the -x option.
If running on bash, you can skip all dependencies like this
./gradlew test $(./gradlew test --dry-run | awk '/^:/ { print "-x" $1 }' | sed '$ d')
What this does is simply
Notice:
--console plain flag if you want to see the initial output without the pretty-print features of GradleIf you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With