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

svn commit: r1237952 - in /incubator/accumulo/trunk: README src/assemble/pom.xml

Author: vines
Date: Mon Jan 30 19:58:14 2012
New Revision: 1237952

URL: http://svn.apache.org/viewvc?rev=1237952&view=rev
Log:
Fixes ACCUMUL-353


Modified:
    incubator/accumulo/trunk/README
    incubator/accumulo/trunk/src/assemble/pom.xml

Modified: incubator/accumulo/trunk/README
URL: http://svn.apache.org/viewvc/incubator/accumulo/trunk/README?rev=1237952&r1=1237951&r2=1237952&view=diff
==============================================================================
--- incubator/accumulo/trunk/README (original)
+++ incubator/accumulo/trunk/README Mon Jan 30 19:58:14 2012
@@ -8,7 +8,7 @@ However, if you only have source code, o
 have maven configured to get Accumulo prerequisites from repositories.  See
 the pom.xml file for the necessary components.
 
-Run "mvn package"
+Run "mvn package -P assemble"
 
 If you are running on another Unix-like operating system (OSX, etc) then
 you may wish to build the native libraries.  They are not strictly necessary
@@ -20,7 +20,7 @@ but having them available suppresses a r
 2. Deployment
 
 Copy the accumulo tar file produced by mvn package 
-from the target/ directory to the desired destination, then untar it (e.g. 
+from the src/assemble/target/ directory to the desired destination, then untar it (e.g. 
 tar xvzf accumulo-1.5.0-incubating-SNAPSHOT-dist.tar.gz).
 
 If you are using the RPM, install the RPM on every machine that will run

Modified: incubator/accumulo/trunk/src/assemble/pom.xml
URL: http://svn.apache.org/viewvc/incubator/accumulo/trunk/src/assemble/pom.xml?rev=1237952&r1=1237951&r2=1237952&view=diff
==============================================================================
--- incubator/accumulo/trunk/src/assemble/pom.xml (original)
+++ incubator/accumulo/trunk/src/assemble/pom.xml Mon Jan 30 19:58:14 2012
@@ -89,25 +89,6 @@
           </execution>
         </executions>
       </plugin>
-      <plugin>
-        <artifactId>maven-assembly-plugin</artifactId>
-        <configuration>
-          <finalName>${project.parent.artifactId}-${project.version}</finalName>
-          <descriptors>
-            <descriptor>src/assemble/dist.xml</descriptor>
-          </descriptors>
-          <tarLongFileMode>gnu</tarLongFileMode>
-        </configuration>
-        <executions>
-          <execution>
-            <id>distro-assembly</id>
-            <phase>package</phase>
-            <goals>
-              <goal>single</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
     </plugins>
   </build>
 
@@ -118,6 +99,32 @@
 
   <profiles>
     <profile>
+      <id>assemble</id>
+      <build>
+      <plugins>
+        <plugin>
+          <artifactId>maven-assembly-plugin</artifactId>
+          <configuration>
+            <finalName>${project.parent.artifactId}-${project.version}</finalName>
+            <descriptors>
+              <descriptor>src/assemble/dist.xml</descriptor>
+            </descriptors>
+            <tarLongFileMode>gnu</tarLongFileMode>
+          </configuration>
+          <executions>
+            <execution>
+              <id>distro-assembly</id>
+              <phase>package</phase>
+              <goals>
+                <goal>single</goal>
+              </goals>
+            </execution>
+          </executions>
+      </plugin>
+      </plugins>
+      </build>
+    </profile>
+    <profile>
       <id>dist</id>
       <properties>
         <so></so>