|
1 | | -import sbtrelease.ReleaseStateTransformations.* |
2 | | - |
3 | 1 | Global / onChangedBuildSource := ReloadOnSourceChanges |
4 | 2 | Global / excludeLintKeys := Set(crossScalaVersions) |
5 | 3 |
|
@@ -89,27 +87,7 @@ lazy val commonSettings = Seq( |
89 | 87 | } else { |
90 | 88 | Nil |
91 | 89 | } |
92 | | - }, |
93 | | - releaseProcess := Seq.empty[ReleaseStep], |
94 | | - releaseProcess ++= (if (sys.env.contains("RELEASE_VERSION_BUMP")) |
95 | | - Seq[ReleaseStep]( |
96 | | - checkSnapshotDependencies, |
97 | | - inquireVersions, |
98 | | - setReleaseVersion, |
99 | | - commitReleaseVersion, |
100 | | - tagRelease |
101 | | - // releaseStepCommandAndRemaining("+publishSigned"), |
102 | | - // releaseStepCommand("sonatypeBundleRelease") |
103 | | - ) |
104 | | - else Seq.empty[ReleaseStep]), |
105 | | - releaseProcess ++= (if (sys.env.contains("RELEASE_PUBLISH")) |
106 | | - Seq[ReleaseStep]( |
107 | | - inquireVersions, |
108 | | - setNextVersion, |
109 | | - commitNextVersion, |
110 | | - pushChanges |
111 | | - ) |
112 | | - else Seq.empty[ReleaseStep]) |
| 90 | + } |
113 | 91 | ) |
114 | 92 |
|
115 | 93 | lazy val `scala-api-common` = (project in file("modules/flink-common-api")) |
@@ -185,8 +163,6 @@ lazy val `examples` = (project in file("modules/examples")) |
185 | 163 | crossScalaVersions := Seq(rootScalaVersion), |
186 | 164 | Test / fork := true, |
187 | 165 | publish / skip := true, |
188 | | - // Release process for the `examples` is not needed |
189 | | - releaseProcess := Seq.empty[ReleaseStep], |
190 | 166 | libraryDependencies ++= Seq( |
191 | 167 | "org.apache.flink" % "flink-runtime-web" % flinkVersion1 % Provided, |
192 | 168 | "org.apache.flink" % "flink-clients" % flinkVersion1 % Provided, |
|
0 commit comments