You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -77,7 +78,7 @@ The following settings are also available:
77
78
78
79
## Set up tag-based publishing
79
80
80
-
The instructions here are a summary of the readme in https://github.com/olafurpg/sbt-ci-release
81
+
The instructions here are a summary of the readme in https://github.com/olafurpg/sbt-ci-release and https://github.com/scalacenter/sbt-version-policy
81
82
82
83
- Create a fresh GPG key: `gpg --gen-key`
83
84
- Real name: use "project-name bot"
@@ -97,3 +98,5 @@ The instructions here are a summary of the readme in https://github.com/olafurpg
// adapted from https://github.com/lightbend/migration-manager/blob/0.3.0/sbtplugin/src/main/scala/com/typesafe/tools/mima/plugin/SbtMima.scala#L112
log.warn(s"""MiMa will NOT run because the previous artifact "${organization.value}" % "${name.value}_${scalaBinaryVersion.value}" % "$mimaVer" could not be resolved (note the binary Scala version).""")
200
-
exists
201
-
}
202
-
},
177
+
versionPolicyIntention :=Compatibility.None,
203
178
204
-
runMimaIfEnabled :=Def.taskDyn({
205
-
if (canRunMima.value) Def.task { mimaReportBinaryIssues.value }
206
-
elseDef.task { () }
179
+
runVersionPolicyCheckIfEnabled :=Def.taskDyn({
180
+
if (versionPolicyIntention.value !=Compatibility.None) Def.task { versionPolicyCheck.value }
181
+
elseDef.task {
182
+
streams.value.log.warn("versionPolicyCheck will NOT run because versionPolicyIntention is set to Compatibility.None.")
0 commit comments