Merge pull request #284 from alexarchambault/coursier-2.0.5

Update coursier to 2.0.5
This commit is contained in:
Alexandre Archambault 2020-10-23 17:57:21 +02:00 committed by GitHub
commit d41e8a25e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 6 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
target/
.bsp/
# Metals / bloop
.metals/

View File

@ -15,7 +15,7 @@ inThisBuild(List(
)
))
val coursierVersion0 = "2.0.0"
val coursierVersion0 = "2.0.5"
lazy val `lm-coursier` = project
.in(file("modules/lm-coursier"))
@ -62,6 +62,7 @@ lazy val `lm-coursier-shaded` = project
libraryDependencies ++= Seq(
"io.get-coursier" %% "coursier" % coursierVersion0,
"io.github.alexarchambault" %% "data-class" % "0.2.3" % Provided,
"org.scala-lang.modules" %% "scala-collection-compat" % "2.2.0",
"org.scala-lang.modules" %% "scala-xml" % "1.3.0", // depending on that one so that it doesn't get shaded
"org.scala-sbt" %% "librarymanagement-ivy" % "1.3.4",
"org.scalatest" %% "scalatest" % "3.2.2" % Test

View File

@ -1,10 +1,7 @@
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.3")
addSbtPlugin(("io.github.alexarchambault.sbt" % "sbt-compatibility" % "0.0.8").exclude("com.typesafe", "sbt-mima-plugin"))
addSbtPlugin("io.github.alexarchambault.sbt" % "sbt-compatibility" % "0.0.8")
addSbtPlugin("io.github.alexarchambault.sbt" % "sbt-eviction-rules" % "0.2.0")
addSbtPlugin("com.github.alexarchambault.tmp" % "sbt-mima-plugin" % "0.7.1-SNAPSHOT")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.8.1")
addSbtPlugin("io.get-coursier" % "sbt-shading" % "2.0.0")
libraryDependencies += "org.scala-sbt" %% "scripted-plugin" % sbtVersion.value
resolvers += Resolver.sonatypeRepo("snapshots")