You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2011/12/12 21:37:39 UTC

svn commit: r1213430 - /hbase/branches/0.92/pom.xml

Author: stack
Date: Mon Dec 12 20:37:39 2011
New Revision: 1213430

URL: http://svn.apache.org/viewvc?rev=1213430&view=rev
Log:
HBASE-4922 [packaging] Assembly tars up hbase in a subdir; i.e. after untar hbase-0.92.0 has a subdir named 0.92.0

Modified:
    hbase/branches/0.92/pom.xml

Modified: hbase/branches/0.92/pom.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.92/pom.xml?rev=1213430&r1=1213429&r2=1213430&view=diff
==============================================================================
--- hbase/branches/0.92/pom.xml (original)
+++ hbase/branches/0.92/pom.xml Mon Dec 12 20:37:39 2011
@@ -3,8 +3,6 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 <!--
 /**
- * Copyright 2010 The Apache Software Foundation
- *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -707,10 +705,10 @@
 
                 <!-- Using Unix tar to preserve symlinks -->
                 <exec executable="tar" failonerror="yes"
-                  dir="${project.build.directory}">
+                  dir="${project.build.directory}/${project.build.finalName}">
                     <arg value="czf"/>
                     <arg value="${project.build.directory}/${project.build.finalName}.tar.gz"/>
-                    <arg value="${project.build.finalName}"/>
+                    <arg value="${project.build.finalName}/" />
                 </exec>
 
               </target>