Hi Team, I’ve set up a multi-module Gradle projec...
# community-support
s
Hi Team, I’ve set up a multi-module Gradle project using Java conventions to manage common dependencies and tasks. This allows me to build each subproject individually with
./gradlew :subproject:build
. Is there a way to build all subprojects without having to specify each subproject name? project structure: root-project -> buildSRC --> src/main/groovy/java-conventions.gradle --> build.gradle -> subproject1 --> build.gradle -> subproject2 --> build.gradle Requiremnet: • ./gradlew clean build should build all subprojects
1
t
Doesn't
./gradlew build
just work?
s
Yes, it worked, Thank you