Make sbt-shared a simple library

Rather than a kind of sbt plugin
This commit is contained in:
Alexandre Archambault 2018-11-14 14:52:36 +01:00
parent e5b2e2ee13
commit 348a9f00c7
1 changed files with 3 additions and 2 deletions

View File

@ -20,10 +20,11 @@ val coursierVersion = "1.1.0-M8"
lazy val `sbt-shared` = project
.in(file("modules/sbt-shared"))
.settings(
plugin,
shared,
libraryDependencies ++= Seq(
"io.get-coursier" %% "coursier" % coursierVersion,
"io.get-coursier" %% "coursier-cache" % coursierVersion
"io.get-coursier" %% "coursier-cache" % coursierVersion,
"org.scala-sbt" %% "librarymanagement-ivy" % "1.0.2"
)
)