Refactoring to batch (#181)

The rationale of this pull request is to

* have more maintainable and granular code
* not maintain the custom made job engine
* allow the users to customize the defaults of the releaser more easy
* allow the users to create their own steps without the need to change any existing code
* allow the users to fully change the flows and tasks logic
* abstract underlying batch mechanism (Spring Batch) so it doesn't leak to production code
* allow parallelization of the release process and release tasks
This commit is contained in:
Marcin Grzejszczak
2019-12-23 13:49:58 +01:00
committed by GitHub
parent ea85372e05
commit 8992e45321
2130 changed files with 12441 additions and 6429 deletions

View File

@@ -24,9 +24,9 @@
<suppress files=".*PomUpdateAcceptanceTests.*" checks="LineLengthCheck"/>
<suppress files=".*ProjectDocumentationUpdaterTests.*" checks="LineLengthCheck"/>
<suppress files=".*ReleaserApplicationEventTests.*" checks="LineLengthCheck"/>
<suppress files=".*org.springframework.cloud.release.internal.sagan.Project.*" checks="JavadocVariableCheck"/>
<suppress files=".*org.springframework.cloud.release.internal.sagan.Release.*" checks="JavadocVariableCheck"/>
<suppress files=".*org.springframework.cloud.release.internal.sagan.ReleaseUpdate.*" checks="JavadocVariableCheck"/>
<suppress files=".*org.springframework.cloud.release.internal.sagan.Repository.*" checks="JavadocVariableCheck"/>
<suppress files=".*Project.*" checks="JavadocVariableCheck"/>
<suppress files=".*Release.*" checks="JavadocVariableCheck"/>
<suppress files=".*ReleaseUpdate.*" checks="JavadocVariableCheck"/>
<suppress files=".*Repository.*" checks="JavadocVariableCheck"/>
<suppress files=".*src.test.java.*" checks="JavadocVariableCheck"/>
</suppressions>