mirror of https://github.com/sbt/sbt.git
Enable sbt-updates for plugins
This commit is contained in:
parent
95289d9657
commit
70dad11384
|
|
@ -205,10 +205,12 @@ object Release {
|
|||
val baseDir = Project.extract(state).get(baseDirectory.in(ThisBuild))
|
||||
val pluginsSbtFile = baseDir / "project" / "plugins.sbt"
|
||||
val projectPluginsSbtFile = baseDir / "project" / "project" / "plugins.sbt"
|
||||
val projectProjectPluginsSbtFile = baseDir / "project" / "project" / "project" / "plugins.sbt"
|
||||
|
||||
val files = Seq(
|
||||
pluginsSbtFile,
|
||||
projectPluginsSbtFile
|
||||
projectPluginsSbtFile,
|
||||
projectProjectPluginsSbtFile
|
||||
)
|
||||
|
||||
for (f <- files) {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
addSbtPlugin("io.get-coursier" % "sbt-coursier" % coursierVersion)
|
||||
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.3.0")
|
||||
|
||||
// important: this line is matched / substituted during releases (via sbt-release)
|
||||
def coursierVersion = "1.0.0-RC3"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
addSbtPlugin("io.get-coursier" % "sbt-coursier" % coursierVersion)
|
||||
|
||||
// important: this line is matched / substituted during releases (via sbt-release)
|
||||
def coursierVersion = "1.0.0-RC3"
|
||||
|
||||
// required for just released things
|
||||
resolvers += Resolver.sonatypeRepo("releases")
|
||||
Loading…
Reference in New Issue