@@ -270,7 +270,7 @@ public IExit invoke() throws Throwable {
270270 // Check out the recent tag using jgit
271271 project .checkoutTag (project .getReleaseProperties ().getTag ());
272272 // Maven install (stream stdio to the console) the newly created release version
273- getContext ().getMaven ().install (project .getDirectory (), IMaven .PROFILES_RELEASE );
273+ getContext ().getMaven ().install (project .getDirectory (), true , IMaven .PROFILES_RELEASE );
274274 phase = project .updatePhase (Phase .InstalledRelease );
275275 }
276276 log .info ("Installed release {} {}" , name , releaseProperties .getRelease ());
@@ -328,7 +328,7 @@ public IExit invoke() throws Throwable {
328328 // Check out the branch head
329329 project .getGit ().checkout ().setCreateBranch (false ).setName (getBranch ()).call ();
330330 // Maven install (stream stdio to the console) the new development versions
331- getContext ().getMaven ().install (project .getDirectory (), IMaven .PROFILES_RELEASE );
331+ getContext ().getMaven ().install (project .getDirectory (), false , IMaven .PROFILES_RELEASE );
332332
333333 log .info ("Updating downstream {}" , name );
334334 for (BulldozerProject downstream : getContext ().getProjects ().values ()) {
@@ -363,7 +363,7 @@ public IExit invoke() throws Throwable {
363363 log .info ("\t {}" , name );
364364 final BulldozerProject project = getContext ().getNameToProject ().get (name );
365365 // Maven install (stream stdio to the console) the downstream, since it was updated
366- getContext ().getMaven ().install (project .getDirectory ());
366+ getContext ().getMaven ().install (project .getDirectory (), false , HCollection . emptyList () );
367367 }
368368
369369 // Find the local maven repository
0 commit comments