Slackbot
03/03/2023, 2:02 PMAdam
03/03/2023, 2:04 PM--parallel
is only affects multiple subprojects
https://docs.gradle.org/current/userguide/performance.html#parallel_execution
Most projects consist of more than one subproject. Usually, some of those subprojects are independent of one another; that is, they do not share state. Yet by default, Gradle only runs one task at a time. To execute tasks belonging to different subprojects in parallel, use theflagparallel
Andrew Louis
03/03/2023, 2:05 PMephemient
03/03/2023, 2:06 PMThe configuration cache enables additional benefits as well. When enabled, Gradle:
• Executes all tasks in parallel, even those in the same subproject.
Adam
03/03/2023, 2:07 PMAndrew Louis
03/03/2023, 2:08 PM