Skip to content

Commit c5033d5

Browse files
committed
melting-pot: include local projects in reactor
Without this test, the isProject check fails, and LOCAL/PROJECT is not included in the multi-module build.
1 parent 1486380 commit c5033d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

melting-pot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ pruneReactor() {
484484
# Tests if the given directory contains the appropriate source code.
485485
isProject() {
486486
local a="$(xpath "$1/pom.xml" project artifactId)"
487-
test "$a" = "$(basename "$1")" && echo 1
487+
test "$1" = "LOCAL/PROJECT" -o "$a" = "$(basename "$1")" && echo 1
488488
}
489489

490490
# Generates an aggregator POM for all modules in the current directory.

0 commit comments

Comments
 (0)