mirror of https://github.com/sbt/sbt.git
Merge pull request #9083 from xuwei-k/mimaPreviousArtifacts-RC12
[2.x] Update mimaPreviousArtifacts
This commit is contained in:
commit
95152f9745
|
|
@ -124,7 +124,7 @@ def testedBaseSettings: Seq[Setting[?]] =
|
|||
|
||||
val sbt20Plus =
|
||||
Seq(
|
||||
"2.0.0-RC11",
|
||||
"2.0.0-RC12",
|
||||
)
|
||||
val mimaSettings = mimaSettingsSince(sbt20Plus)
|
||||
def mimaSettingsSince(versions: Seq[String]): Seq[Def.Setting[?]] = Def settings (
|
||||
|
|
|
|||
|
|
@ -4739,6 +4739,13 @@ trait BuildExtra extends BuildCommon with DefExtra {
|
|||
Seq(compose(onLoad, add), compose(onUnload, remove))
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds dependency tree plugin.
|
||||
*/
|
||||
@deprecated("dependencyTree is built into sbt 2.x; this is now a no-op", "2.0.0")
|
||||
def addDependencyTreePlugin: Setting[Seq[ModuleID]] =
|
||||
libraryDependencies ++= Nil
|
||||
|
||||
/**
|
||||
* Adds Maven resolver plugin.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
import sbtassembly.AssemblyPlugin.autoImport._
|
||||
|
||||
assembly / assemblyJarName := "plugin-survived.jar"
|
||||
|
||||
TaskKey[Unit]("check") := ()
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
addDependencyTreePlugin
|
||||
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1")
|
||||
|
|
@ -0,0 +1 @@
|
|||
> check
|
||||
Loading…
Reference in New Issue