You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tajo.apache.org by jh...@apache.org on 2014/09/26 07:57:20 UTC

git commit: TAJO-1060: Apply updated hadoop versions to README and BUILDING files. (jinho)

Repository: tajo
Updated Branches:
  refs/heads/master 55bfa680b -> d384cf00d


TAJO-1060: Apply updated hadoop versions to README and BUILDING files. (jinho)

Closes #158


Project: http://git-wip-us.apache.org/repos/asf/tajo/repo
Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/d384cf00
Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/d384cf00
Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/d384cf00

Branch: refs/heads/master
Commit: d384cf00d2288910b431cf61b1b74ccc9359ae24
Parents: 55bfa68
Author: jhkim <jh...@apache.org>
Authored: Fri Sep 26 14:56:20 2014 +0900
Committer: jhkim <jh...@apache.org>
Committed: Fri Sep 26 14:56:20 2014 +0900

----------------------------------------------------------------------
 BUILDING             | 8 +++++---
 CHANGES              | 3 +++
 README               | 2 +-
 tajo-project/pom.xml | 2 +-
 4 files changed, 10 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tajo/blob/d384cf00/BUILDING
----------------------------------------------------------------------
diff --git a/BUILDING b/BUILDING
index c8d91c8..3be765e 100644
--- a/BUILDING
+++ b/BUILDING
@@ -42,8 +42,8 @@ Maven build goals:
 
  Build options:
   * Use -Dtar to create a TAR with the distribution (using -Pdist)
-  * Use -Dhadoop.version to build with the specific hadoop version (-Dhadoop.version=2.3.0)
-    * Currently, 2.2.0, 2.3.0, and 2.4.0 are supported.
+  * Use -Dhadoop.version to build with the specific hadoop version (-Dhadoop.version=2.5.1)
+    * Currently, 2.2.0 or higher are supported.
 
  Tests options:
   * Use -DskipTests to skip tests when running the following Maven goals:
@@ -57,6 +57,8 @@ Building distributions:
 
 Create binary distribution
 
-  $ mvn clean install -Pdist -DskipTests -Dtar
+  $ mvn clean install -Pdist -DskipTests -Dtar -Dhadoop.version=2.X.X
+
+You should substitute 2.X.X with your Hadoop version.
 
 --------------------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/tajo/blob/d384cf00/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index feaf7ba..59c3ba9 100644
--- a/CHANGES
+++ b/CHANGES
@@ -469,6 +469,9 @@ Release 0.9.0 - unreleased
 
   SUB TASKS
 
+    TAJO-1060: Apply updated hadoop versions to README and BUILDING files.
+    (jinho)
+
     TAJO-667: Add math function documentation. (Jongyoung Park via hyunsik)
 
     TAJO-1016: Refactor worker rpc information. (jinho)

http://git-wip-us.apache.org/repos/asf/tajo/blob/d384cf00/README
----------------------------------------------------------------------
diff --git a/README b/README
index de8671d..069d0b5 100644
--- a/README
+++ b/README
@@ -32,7 +32,7 @@ Documents
 Requirements
 ============
 * Java 1.6 or higher
-* Hadoop 2.2.0, 2.3.0, and 2.4.0
+* Hadoop 2.2.0 or higher
 
 Mailing lists
 =============

http://git-wip-us.apache.org/repos/asf/tajo/blob/d384cf00/tajo-project/pom.xml
----------------------------------------------------------------------
diff --git a/tajo-project/pom.xml b/tajo-project/pom.xml
index fe5366e..7f8de62 100644
--- a/tajo-project/pom.xml
+++ b/tajo-project/pom.xml
@@ -34,7 +34,7 @@
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-    <hadoop.version>2.3.0</hadoop.version>
+    <hadoop.version>2.5.1</hadoop.version>
     <protobuf.version>2.5.0</protobuf.version>
     <tajo.version>0.9.0-SNAPSHOT</tajo.version>
     <tajo.root>${project.parent.relativePath}/..</tajo.root>