I'm trying to only configure and execute one specific module of Gradle.
The configuration step in the build contains module-specific things that will cause one module to fail if not executed against a specific environment (e.g. One Module is configured against JDK 17, but others against JDK 1.8) against my CI tool.
When I try to run this:
./gradlew :ABC:build
All of the other projects still get configured, but not executed. Because of the module-specific conditions that are dependent on a lot of environment variables, certain modules will fail if executed at the same time.