From a1d972bb6661c38e0a4b3387853a220248c337bf Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Thu, 13 Oct 2016 00:49:06 -0400 Subject: [PATCH] Remove dependencyOverrides --- build.sbt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index f8efa29dd..f5f6e4c40 100644 --- a/build.sbt +++ b/build.sbt @@ -449,8 +449,7 @@ lazy val commandProj = (project in mainPath / "command"). settings( testedBaseSettings, name := "Command", - libraryDependencies ++= Seq(launcherInterface, templateResolverApi), - dependencyOverrides += plexusUtils + libraryDependencies ++= Seq(launcherInterface, templateResolverApi) ) // Fixes scope=Scope for Setting (core defined in collectionProj) to define the settings system used in build definitions @@ -489,7 +488,6 @@ lazy val mavenResolverPluginProj = (project in file("sbt-maven-resolver")). baseSettings, name := "sbt-maven-resolver", libraryDependencies ++= aetherLibs, - dependencyOverrides += plexusUtils, sbtPlugin := true )