From edf7cb228c28e1028fd47e3f83a12c3454849909 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Tue, 21 Feb 2012 22:47:07 -0500 Subject: [PATCH] fix build --- project/Sbt.scala | 2 ++ 1 file changed, 2 insertions(+) diff --git a/project/Sbt.scala b/project/Sbt.scala index fcc0602d7..a4e93d5af 100644 --- a/project/Sbt.scala +++ b/project/Sbt.scala @@ -199,6 +199,8 @@ object Sbt extends Build target <<= (target, scalaVersion) { (base, sv) => base / ("precompiled_" + sv) }, scalacOptions := Nil, crossPaths := false, + ivyScala ~= { _.map(_.copy(checkExplicit = false, overrideScalaVersion = false)) }, + conflictWarning ~= { _.copy(filter = const(false)) }, exportedProducts in Compile := Nil, exportedProducts in Test := Nil, libraryDependencies <+= scalaVersion( "org.scala-lang" % "scala-compiler" % _ % "provided"),