Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Critical
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Labels:None
-
Number of attachments :
Description
If there a no scm changes in a project, reactor:make-scm-changes fails the build with 'No folders matched: '
I'd expect that it would simply does nothing in that case, i.e. don't build any modules
Changing the last lines of the MakeScmChanges#execute method to
if (!folderList.isEmpty()) { getLog().info( "Going to make dependents for: " + folderList ); super.execute(); } else { getLog().info("No changed folders. Nothing to do." ); }fixes this for me