Commit 2dfab86
authored
Fix filterByScope to expand lifecycle scopes for build ordering (#13070)
The concurrent builder's filterByScope used exact string matching between
the lifecycle dependency scope (e.g. "compile") and the declared artifact
scope. This meant a provided-scope reactor dependency was not ordered
before the consumer's compile phase, since "compile" != "provided".
Expand the lifecycle scope to match all artifact scopes that contribute
to it:
- "compile" -> compile, provided, system (+ null defaults to compile)
- "runtime" -> compile, runtime (+ null)
- "test" -> all scopes
- "test-only" -> test only
This ensures provided/system-scope reactor projects are built before
downstream modules that need them for compilation.1 parent 321a9c8 commit 2dfab86
2 files changed
Lines changed: 57 additions & 23 deletions
File tree
- impl/maven-core/src
- main/java/org/apache/maven/lifecycle/internal/concurrent
- test/java/org/apache/maven/lifecycle/internal/concurrent
Lines changed: 30 additions & 10 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
702 | 702 | | |
703 | 703 | | |
704 | 704 | | |
705 | | - | |
706 | | - | |
707 | | - | |
708 | | - | |
709 | | - | |
710 | | - | |
711 | | - | |
712 | | - | |
| 705 | + | |
| 706 | + | |
| 707 | + | |
| 708 | + | |
| 709 | + | |
| 710 | + | |
| 711 | + | |
| 712 | + | |
| 713 | + | |
| 714 | + | |
| 715 | + | |
| 716 | + | |
| 717 | + | |
713 | 718 | | |
714 | 719 | | |
715 | 720 | | |
716 | | - | |
| 721 | + | |
717 | 722 | | |
718 | 723 | | |
719 | 724 | | |
720 | 725 | | |
721 | 726 | | |
722 | 727 | | |
723 | 728 | | |
| 729 | + | |
724 | 730 | | |
725 | 731 | | |
726 | 732 | | |
727 | 733 | | |
728 | | - | |
| 734 | + | |
729 | 735 | | |
730 | 736 | | |
731 | 737 | | |
| 738 | + | |
| 739 | + | |
| 740 | + | |
| 741 | + | |
| 742 | + | |
| 743 | + | |
| 744 | + | |
| 745 | + | |
| 746 | + | |
| 747 | + | |
| 748 | + | |
| 749 | + | |
| 750 | + | |
| 751 | + | |
732 | 752 | | |
733 | 753 | | |
734 | 754 | | |
| |||
Lines changed: 27 additions & 13 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
239 | 239 | | |
240 | 240 | | |
241 | 241 | | |
242 | | - | |
243 | | - | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
244 | 245 | | |
245 | 246 | | |
246 | 247 | | |
247 | 248 | | |
248 | 249 | | |
| 250 | + | |
| 251 | + | |
249 | 252 | | |
250 | 253 | | |
251 | | - | |
| 254 | + | |
252 | 255 | | |
253 | 256 | | |
254 | 257 | | |
255 | 258 | | |
| 259 | + | |
| 260 | + | |
256 | 261 | | |
257 | 262 | | |
258 | 263 | | |
259 | | - | |
| 264 | + | |
260 | 265 | | |
261 | 266 | | |
262 | | - | |
| 267 | + | |
263 | 268 | | |
| 269 | + | |
| 270 | + | |
264 | 271 | | |
265 | 272 | | |
266 | | - | |
267 | | - | |
268 | | - | |
269 | | - | |
270 | | - | |
| 273 | + | |
| 274 | + | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
271 | 280 | | |
272 | | - | |
| 281 | + | |
273 | 282 | | |
274 | | - | |
275 | | - | |
| 283 | + | |
| 284 | + | |
| 285 | + | |
| 286 | + | |
| 287 | + | |
| 288 | + | |
| 289 | + | |
276 | 290 | | |
277 | 291 | | |
278 | 292 | | |
| |||
0 commit comments