You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@predictionio.apache.org by ta...@apache.org on 2017/06/09 10:23:47 UTC

incubator-predictionio git commit: [PIO-91] Fixed hadoop-hdfs artifact missing error.

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 <sh...@apache.org>
Authored: Fri Jun 9 19:20:32 2017 +0900
Committer: Naoki Takezoe <ta...@apache.org>
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")