Skip to content

Commit

Permalink
Remove -U to not force an update of all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennestuder committed May 19, 2022
1 parent de0d91b commit 31279eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public VersionInfo extractCurrentVersion(Path rootProjectDir) throws IOException

@Override
public void runWrapper(ExecOperations execOperations, Path rootProjectDir, VersionInfo version) {
ExecUtils.execMavenCmd(execOperations, rootProjectDir, "-B", "-N", "-U", "wrapper:wrapper", "-Dmaven=" + version.version);
ExecUtils.execMavenCmd(execOperations, rootProjectDir, "-B", "-N", "wrapper:wrapper", "-Dmaven=" + version.version);
}

@Override
Expand Down

0 comments on commit 31279eb

Please sign in to comment.