You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2013/10/19 01:53:14 UTC

[07/13] git commit: Change accumulo version to 1.4.0 from 1.5.0-incubating-SNAPSHOT

Change accumulo version to 1.4.0 from 1.5.0-incubating-SNAPSHOT


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

Branch: refs/heads/1.5
Commit: c478e295d3d8213135e0a1ad01d690d974ec9582
Parents: 9338d23
Author: Keith Turner <ke...@deenlo.com>
Authored: Mon Apr 2 14:55:46 2012 -0400
Committer: Keith Turner <ke...@deenlo.com>
Committed: Mon Apr 2 14:55:46 2012 -0400

----------------------------------------------------------------------
 README.md | 14 +++++++-------
 pom.xml   |  6 +++---
 2 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo-pig/blob/c478e295/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index bf95c6e..7f58156 100644
--- a/README.md
+++ b/README.md
@@ -8,18 +8,18 @@ download the JARs needed by pig
 
 print the register statements we will need in pig
 
-    for JAR in lib/*.jar target/accumulo-pig-1.5.0-incubating-SNAPSHOT.jar ; 
+    for JAR in lib/*.jar target/accumulo-pig-1.4.0.jar ; 
     do 
         echo register `pwd`/$JAR; 
     done
 
 Example output
 
-    register /home/developer/workspace/accumulo-pig/lib/accumulo-core-1.5.0-incubating-SNAPSHOT.jar
-    register /home/developer/workspace/accumulo-pig/lib/cloudtrace-1.5.0-incubating-SNAPSHOT.jar
+    register /home/developer/workspace/accumulo-pig/lib/accumulo-core-1.4.0.jar
+    register /home/developer/workspace/accumulo-pig/lib/cloudtrace-1.4.0.jar
     register /home/developer/workspace/accumulo-pig/lib/libthrift-0.6.1.jar
     register /home/developer/workspace/accumulo-pig/lib/zookeeper-3.3.1.jar
-    register /home/developer/workspace/accumulo-pig/target/accumulo-pig-1.5.0-incubating-SNAPSHOT.jar
+    register /home/developer/workspace/accumulo-pig/target/accumulo-pig-1.4.0.jar
 
 Run Pig, copy the register statements above and paste them into the pig terminal.  Then you can LOAD from and STORE into accumulo.
 
@@ -27,11 +27,11 @@ Run Pig, copy the register statements above and paste them into the pig terminal
     2012-03-02 08:15:25,808 [main] INFO  org.apache.pig.Main - Logging error messages to: /home/developer/workspace/accumulo-pig/pig_1330694125807.log
     2012-03-02 08:15:25,937 [main] INFO  org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting to hadoop file system at: hdfs://127.0.0.1/
     2012-03-02 08:15:26,032 [main] INFO  org.apache.pig.backend.hadoop.executionengine.HExecutionEngine - Connecting to map-reduce job tracker at: 127.0.0.1:9001
-    grunt> register /home/developer/workspace/accumulo-pig/lib/accumulo-core-1.5.0-incubating-SNAPSHOT.jar
-    grunt> register /home/developer/workspace/accumulo-pig/lib/cloudtrace-1.5.0-incubating-SNAPSHOT.jar
+    grunt> register /home/developer/workspace/accumulo-pig/lib/accumulo-core-1.4.0.jar
+    grunt> register /home/developer/workspace/accumulo-pig/lib/cloudtrace-1.4.0.jar
     grunt> register /home/developer/workspace/accumulo-pig/lib/libthrift-0.6.1.jar
     grunt> register /home/developer/workspace/accumulo-pig/lib/zookeeper-3.3.1.jar
-    grunt> register /home/developer/workspace/accumulo-pig/target/accumulo-pig-1.5.0-incubating-SNAPSHOT.jar
+    grunt> register /home/developer/workspace/accumulo-pig/target/accumulo-pig-1.4.0.jar
     grunt> 
     grunt> DATA = LOAD 'accumulo://webpage?instance=inst&user=root&password=secret&zookeepers=127.0.0.1:2181&columns=f:cnt' 
     >>    using org.apache.accumulo.pig.AccumuloStorage() AS (row, cf, cq, cv, ts, val);

http://git-wip-us.apache.org/repos/asf/accumulo-pig/blob/c478e295/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b99d5d0..6c7bbd3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
   <groupId>org.apache.accumulo</groupId>
   <artifactId>accumulo-pig</artifactId>
   <packaging>jar</packaging>
-  <version>1.5.0-incubating-SNAPSHOT</version>
+  <version>1.4.0</version>
   <name>accumulo-pig</name>
   <url>http://maven.apache.org</url>
 
@@ -48,7 +48,7 @@
 	<dependency>
         <groupId>org.apache.accumulo</groupId>
         <artifactId>accumulo-core</artifactId>
-    <version>1.5.0-incubating-SNAPSHOT</version>
+    <version>1.4.0</version>
       </dependency>
       <dependency>
         <groupId>org.apache.hadoop</groupId>
@@ -63,7 +63,7 @@
       <dependency>
         <groupId>org.apache.accumulo</groupId>
         <artifactId>cloudtrace</artifactId>
-    <version>1.5.0-incubating-SNAPSHOT</version>
+    <version>1.4.0</version>
       </dependency>