From 348a9f00c760f40ff7ae93422ed1378701ea1bc4 Mon Sep 17 00:00:00 2001 From: Alexandre Archambault Date: Wed, 14 Nov 2018 14:52:36 +0100 Subject: [PATCH] Make sbt-shared a simple library Rather than a kind of sbt plugin --- build.sbt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 3e64e091a..e021f674d 100644 --- a/build.sbt +++ b/build.sbt @@ -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" ) )