Commit f6a1f7d
committed
Enable parallel Gradle configuration by removing evaluationDependsOn
The build had evaluationDependsOn() calls that forced sequential configuration:
- otel.java-conventions applied to ~400 projects, each waiting on :dependencyManagement
- otel.bom-conventions looping through all subprojects
- otel.javaagent-testing waiting on :testing:agent-for-testing
Changes:
- Removed evaluationDependsOn from convention plugins (otel.java-conventions, otel.bom-conventions, otel.javaagent-testing)
- Kept evaluationDependsOn only in 2 BOM build.gradle.kts files where directly needed
- Added explicit platform dependencies to ensure proper evaluation order
Result: Projects can now configure in parallel instead of sequentially queuing behind dependencyManagement, significantly improving configuration time.1 parent 4271fe9 commit f6a1f7d
File tree
5 files changed
+6
-9
lines changed- bom-alpha
- bom
- conventions/src/main/kotlin
5 files changed
+6
-9
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
13 | 16 | | |
14 | 17 | | |
15 | 18 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
13 | 16 | | |
14 | 17 | | |
15 | 18 | | |
| |||
Lines changed: 0 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | 12 | | |
18 | 13 | | |
19 | 14 | | |
| |||
41 | 36 | | |
42 | 37 | | |
43 | 38 | | |
44 | | - | |
45 | 39 | | |
46 | 40 | | |
47 | 41 | | |
| |||
Lines changed: 0 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
121 | 121 | | |
122 | 122 | | |
123 | 123 | | |
124 | | - | |
125 | 124 | | |
126 | 125 | | |
127 | 126 | | |
| |||
Lines changed: 0 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
8 | | - | |
9 | 7 | | |
10 | 8 | | |
11 | 9 | | |
| |||
0 commit comments