You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2020/06/20 12:03:37 UTC

[maven] branch MNG-5760 deleted (was 8da7f1e)

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a change to branch MNG-5760
in repository https://gitbox.apache.org/repos/asf/maven.git.


     was 8da7f1e  Removed unused import

This change permanently discards the following revisions:

 discard 8da7f1e  Removed unused import
 discard c8e810f  Persist method either succeeds or throws Exception, so returns void
 discard 6faa4cd  Split off BuildResumptionAnalyzer from BuildResumptionDataRepository
 discard 823d375  Refactored `#determineProjectsToSkip` to return a list instead of an optional with a comma separated list
 discard 94b5469  Rename interface and implementation
 discard e4ef15f  Moved the -rf helper method, including the tests, back to MavenCli. The BuildResumer is now only focused on the --resume feature.
 discard 4c94e2c  Fixed checkstyle findings
 discard f2cacd4  Add a boolean to the setCanResume method, which denotes whether a build can be resumed or not.
 discard 306baa6  When something fails while persisting resumption data, throw an exception instead of returning false.
 discard 3551992  Review comment: Removed Guava's @VisibleForTesting
 discard 393ab2b  Resolving review comment; clearing up persistResumptionData method name.
 discard 8232861  Removed an unused mock for the plexus Logger, which is a leftover after moving to slf4j.
 discard ba630fc  Renamed BuildResumptionManager to BuildResumer
 discard 9b94112  Replace String#format with String concatenation
 discard cbc0ec9  Replace Plexus logger with SLF4J
 discard 0936fd3  Rename resumptionDataStored to canResume
 discard a5cbea9  Avoid stringly-typed method signatures
 discard 473a35e  Replace Stream#filter#count with Stream#anyMatch
 discard edbeb96  Store information about resumption storage in execution result
 discard 504a0ef  Extract public interface
 discard f994d90  Removing the resumption data when a build succeeded.
 discard df60659  Refactored to call the resumption manager from the DefaultMaven instead of the CLI. As DefaultMaven has the right info to determine the execution root.
 discard ff350df  Fixed a bug where a failed project would be excluded in the next build when it failed after another failed build.
 discard 915a3e5  Fix bug where the build resume hint log could be logged incorrectly.
 discard 2d7de18  Removed dead code, as the `getResumeFrom` method has been moved to the BuildResumptionManager.
 discard 6841824  Created unit tests for the resumeFromSelector method.
 discard 25e8d80  When -r is given, load resume.properties and apply it to the execution request.
 discard 9d317a0  Added license to BuildResumptionManagerTest
 discard e4e89ff  Added JavaDoc to the method which determines whether a resume-from suggestion should be given or not.
 discard 1d0c15f  Refactored the getResumeFromSelector logic to be compliant with checkstyle rules.
 discard 556bcca  When a build fails, write file with properties to resume the next build from.