Skip to content

Commit

Permalink
Use Elasticsearch 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dszeto committed Sep 12, 2014
1 parent 6322399 commit a9b8129
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ fork in (ThisBuild, run) := true
javacOptions in ThisBuild ++= Seq("-source", "1.7", "-target", "1.7",
"-Xlint:deprecation", "-Xlint:unchecked")

elasticsearchVersion in ThisBuild := "1.3.2"

json4sVersion in ThisBuild := "3.2.10"

sparkVersion in ThisBuild := "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion core/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ libraryDependencies ++= Seq(
"net.jodah" % "typetools" % "0.3.1",
"org.apache.spark" %% "spark-core" % sparkVersion.value % "provided",
"org.clapper" %% "grizzled-slf4j" % "1.0.2",
"org.elasticsearch" % "elasticsearch" % "1.2.1",
"org.elasticsearch" % "elasticsearch" % elasticsearchVersion.value,
"org.json4s" %% "json4s-native" % json4sVersion.value,
"org.json4s" %% "json4s-ext" % json4sVersion.value,
"org.mongodb" %% "casbah" % "2.7.2",
Expand Down
2 changes: 1 addition & 1 deletion data/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ libraryDependencies ++= Seq(
"org.apache.hbase" % "hbase-common" % "0.98.5-hadoop2",
"org.apache.hbase" % "hbase-client" % "0.98.5-hadoop2",
"org.clapper" %% "grizzled-slf4j" % "1.0.2",
"org.elasticsearch" % "elasticsearch" % "1.2.1",
"org.elasticsearch" % "elasticsearch" % elasticsearchVersion.value,
"org.json4s" %% "json4s-native" % json4sVersion.value,
"org.json4s" %% "json4s-ext" % json4sVersion.value,
"org.mongodb" %% "casbah" % "2.7.2",
Expand Down
3 changes: 3 additions & 0 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import sbt._
import Keys._

object PIOBuild extends Build {
val elasticsearchVersion = SettingKey[String](
"elasticsearch-version",
"The version of Elasticsearch used for building.")
val json4sVersion = SettingKey[String](
"json4s-version",
"The version of JSON4S used for building.")
Expand Down

0 comments on commit a9b8129

Please sign in to comment.