File tree Expand file tree Collapse file tree 2 files changed +191
-190
lines changed
src/main/java/org/springframework/data/release/build Expand file tree Collapse file tree 2 files changed +191
-190
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,15 @@ interface BuildSystem extends Plugin<Project> {
49
49
*/
50
50
ModuleIteration prepareVersion (ModuleIteration module , Phase phase );
51
51
52
+ /**
53
+ * Triggers the pre-release checks for the given {@link ModuleIteration}.
54
+ *
55
+ * @param module must not be {@literal null}.
56
+ * @return
57
+ */
58
+ <M extends ProjectAware > M triggerPreReleaseCheck (M module );
59
+
60
+
52
61
/**
53
62
* Open a remote repository for staging artifacts.
54
63
*/
@@ -59,6 +68,8 @@ interface BuildSystem extends Plugin<Project> {
59
68
*/
60
69
void close (StagingRepository stagingRepository );
61
70
71
+ <M extends ProjectAware > M triggerBuild (M module );
72
+
62
73
/**
63
74
* Deploy artifacts for the given {@link ModuleIteration} using {@link DeploymentInformation}.
64
75
*
@@ -84,16 +95,6 @@ interface BuildSystem extends Plugin<Project> {
84
95
*/
85
96
<M extends ProjectAware > M triggerDistributionBuild (M module );
86
97
87
- <M extends ProjectAware > M triggerBuild (M module );
88
-
89
- /**
90
- * Triggers the pre-release checks for the given {@link ModuleIteration}.
91
- *
92
- * @param module must not be {@literal null}.
93
- * @return
94
- */
95
- <M extends ProjectAware > M triggerPreReleaseCheck (M module );
96
-
97
98
/**
98
99
* Verify general functionality and correctness of the build setup.
99
100
*/
You can’t perform that action at this time.
0 commit comments