Repository: incubator-predictionio Updated Branches: refs/heads/develop d8ff7c2f7 -> a36fbacae
[PIO-91] Fixed hadoop-hdfs artifact missing error. Closes #389 Project: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/commit/a36fbaca Tree: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/tree/a36fbaca Diff: http://git-wip-us.apache.org/repos/asf/incubator-predictionio/diff/a36fbaca Branch: refs/heads/develop Commit: a36fbacaeb4248d1dd28829576f1954ddb3b0fe2 Parents: d8ff7c2 Author: shimamoto <[email protected]> Authored: Fri Jun 9 19:20:32 2017 +0900 Committer: Naoki Takezoe <[email protected]> Committed: Fri Jun 9 19:23:01 2017 +0900 ---------------------------------------------------------------------- storage/hdfs/build.sbt | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-predictionio/blob/a36fbaca/storage/hdfs/build.sbt ---------------------------------------------------------------------- diff --git a/storage/hdfs/build.sbt b/storage/hdfs/build.sbt index 26a3122..47d9dda 100644 --- a/storage/hdfs/build.sbt +++ b/storage/hdfs/build.sbt @@ -22,6 +22,7 @@ name := "apache-predictionio-data-hdfs" libraryDependencies ++= Seq( "org.apache.hadoop" % "hadoop-common" % hadoopVersion.value exclude("commons-beanutils", "*"), + "org.apache.hadoop" % "hadoop-hdfs" % hadoopVersion.value, "org.apache.predictionio" %% "apache-predictionio-data" % version.value % "provided", "org.scalatest" %% "scalatest" % "2.1.7" % "test")
