You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bi...@apache.org on 2012/03/30 20:33:25 UTC

svn commit: r1307571 - in /accumulo/branches/1.3: README pom.xml

Author: billie
Date: Fri Mar 30 18:33:25 2012
New Revision: 1307571

URL: http://svn.apache.org/viewvc?rev=1307571&view=rev
Log:
ACCUMULO-506 added instructions for building thrift

Modified:
    accumulo/branches/1.3/README
    accumulo/branches/1.3/pom.xml

Modified: accumulo/branches/1.3/README
URL: http://svn.apache.org/viewvc/accumulo/branches/1.3/README?rev=1307571&r1=1307570&r2=1307571&view=diff
==============================================================================
--- accumulo/branches/1.3/README (original)
+++ accumulo/branches/1.3/README Fri Mar 30 18:33:25 2012
@@ -17,7 +17,20 @@ However, if you only have source code, o
 have maven configured to get Accumulo pre-requisites from repositories.  See
 the pom.xml file for the necessary components.
 
-Run "mvn package && mvn assembly:single"
+The libthrift 0.3 jar is no longer available from a repository.  To install this jar
+into your local maven repository, run the following commands.
+
+svn export https://svn.apache.org/repos/asf/thrift/tags/thrift-0.3.0
+cd thrift-0.3.0/lib/java/
+ant
+mvn install:install-file -Dfile=libthrift.jar -DgroupId=org.apache.accumulo.thrift \
+   -DartifactId=libthrift -Dversion=0.3 -Dpackaging=jar
+
+Then run the following commands to build Accumulo.
+
+tar xvzf accumulo-1.3.6-SNAPSHOT-src.tar.gz
+cd accumulo-1.3.6-SNAPSHOT
+mvn package && mvn assembly:single
 
 ******************************************************************************
 2. Deployment

Modified: accumulo/branches/1.3/pom.xml
URL: http://svn.apache.org/viewvc/accumulo/branches/1.3/pom.xml?rev=1307571&r1=1307570&r2=1307571&view=diff
==============================================================================
--- accumulo/branches/1.3/pom.xml (original)
+++ accumulo/branches/1.3/pom.xml Fri Mar 30 18:33:25 2012
@@ -624,13 +624,6 @@
     </dependency>
   </dependencies>
 
-  <repositories>
-    <repository>
-      <id>legacy-releases</id>
-      <url>http://accumulo.apache.org/mvn_repo</url>
-    </repository>
-  </repositories>
-
   <issueManagement>
     <url>https://issues.apache.org/jira/browse/ACCUMULO</url>
     <system>Apache's JIRA issue tracker</system>