Skip to content

Commit 05c156b

Browse files
committed
Merge pull request amplab#198 from amplab/tachyon
enable tachyon using 0.3.0 release
2 parents 96730c3 + c9c271c commit 05c156b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

project/SharkBuild.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ object SharkBuild extends Build {
4444
val YARN_ENABLED = env("SHARK_YARN").getOrElse("false").toBoolean
4545

4646
// Whether to build Shark with Tachyon jar.
47-
val TACHYON_ENABLED = false
47+
val TACHYON_ENABLED = true
4848

4949
lazy val root = Project(
5050
id = "root",
@@ -128,7 +128,7 @@ object SharkBuild extends Build {
128128
"net.java.dev.jets3t" % "jets3t" % "0.7.1",
129129
"com.novocode" % "junit-interface" % "0.8" % "test") ++
130130
(if (YARN_ENABLED) Some("org.apache.spark" %% "spark-yarn" % SPARK_VERSION) else None).toSeq ++
131-
(if (TACHYON_ENABLED) Some("org.tachyonproject" % "tachyon" % "0.3.0-SNAPSHOT" excludeAll(excludeKyro, excludeHadoop, excludeCurator, excludeJackson, excludeNetty, excludeAsm)) else None).toSeq
131+
(if (TACHYON_ENABLED) Some("org.tachyonproject" % "tachyon" % "0.3.0" excludeAll(excludeKyro, excludeHadoop, excludeCurator, excludeJackson, excludeNetty, excludeAsm)) else None).toSeq
132132
) ++ org.scalastyle.sbt.ScalastylePlugin.Settings
133133

134134
def assemblyProjSettings = Seq(

0 commit comments

Comments
 (0)