aboutsummaryrefslogtreecommitdiff
path: root/project/SparkBuild.scala
diff options
context:
space:
mode:
authorStephen Haberman <stephen@exigencecorp.com>2013-01-08 14:44:33 -0600
committerStephen Haberman <stephen@exigencecorp.com>2013-01-08 14:44:33 -0600
commitc3f1675f9c4a1be9eebf9512795abc968ac29ba2 (patch)
treec605afab4c8089671a585ef24703f0130f10a684 /project/SparkBuild.scala
parenta37adfa67bac51b2630c6e1673f8607a87273402 (diff)
downloadspark-c3f1675f9c4a1be9eebf9512795abc968ac29ba2.tar.gz
spark-c3f1675f9c4a1be9eebf9512795abc968ac29ba2.tar.bz2
spark-c3f1675f9c4a1be9eebf9512795abc968ac29ba2.zip
Retrieve jars to a flat directory so * can be used for the classpath.
Diffstat (limited to 'project/SparkBuild.scala')
-rw-r--r--project/SparkBuild.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 7c7c33131a..518c4130f0 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -38,6 +38,7 @@ object SparkBuild extends Build {
scalacOptions := Seq(/*"-deprecation",*/ "-unchecked", "-optimize"), // -deprecation is too noisy due to usage of old Hadoop API, enable it once that's no longer an issue
unmanagedJars in Compile <<= baseDirectory map { base => (base / "lib" ** "*.jar").classpath },
retrieveManaged := true,
+ retrievePattern := "[type]s/[artifact](-[revision])(-[classifier]).[ext]",
transitiveClassifiers in Scope.GlobalScope := Seq("sources"),
testListeners <<= target.map(t => Seq(new eu.henkelmann.sbt.JUnitXmlTestsListener(t.getAbsolutePath))),