mirror of https://github.com/sbt/sbt.git
Add missing versionScheme to warning
This commit is contained in:
parent
3e125fa040
commit
dc2865d407
|
|
@ -3081,7 +3081,7 @@ object Classpaths {
|
||||||
val vs = versionScheme.value
|
val vs = versionScheme.value
|
||||||
if (vs.isEmpty)
|
if (vs.isEmpty)
|
||||||
s.log.warn(
|
s.log.warn(
|
||||||
s"""versionScheme setting is empty; set `ThisBuild / versionScheme := Some("early-semver")` or `Some("pvp")`
|
s"""versionScheme setting is empty; set `ThisBuild / versionScheme := Some("early-semver")`, `Some("semver-spec")` or `Some("pvp")`
|
||||||
|so tooling can use it for evction errors etc - https://www.scala-sbt.org/1.x/docs/Publishing.html""".stripMargin
|
|so tooling can use it for evction errors etc - https://www.scala-sbt.org/1.x/docs/Publishing.html""".stripMargin
|
||||||
)
|
)
|
||||||
else ()
|
else ()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue