From d7f991632e6d75fa3d551cc1311d1c891b4c4a59 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Fri, 17 Jun 2011 22:24:03 -0400 Subject: [PATCH] fix compiler-interface-src artifact --- project/Sbt.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Sbt.scala b/project/Sbt.scala index 9812294d3..c52cd522b 100644 --- a/project/Sbt.scala +++ b/project/Sbt.scala @@ -201,7 +201,7 @@ object Sbt extends Build // def compileInterfaceSettings: Seq[Setting[_]] = precompiledSettings ++ Seq( exportJars := true, - artifact in packageSrc := Artifact(srcID) extra("e:component" -> srcID) + artifact in (Compile, packageSrc) := Artifact(srcID) extra("e:component" -> srcID) ) def compilerSettings = Seq( libraryDependencies <+= scalaVersion( "org.scala-lang" % "scala-compiler" % _ % "test"),