You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by li...@apache.org on 2014/04/11 20:18:32 UTC

svn commit: r1586737 - /hbase/branches/0.89-fb/pom.xml

Author: liyin
Date: Fri Apr 11 18:18:32 2014
New Revision: 1586737

URL: http://svn.apache.org/r1586737
Log:
[HBASE-10959] Build sources for tests

Author: manukranthk

Summary: Adds maven execution to build sources jar for tests as well.

Test Plan: mvn -DskipTests package

Reviewers: adela, liyintang, nileema

Reviewed By: adela

CC: hbase-eng@

Differential Revision: https://phabricator.fb.com/D1268802

Task ID: 4027020

Modified:
    hbase/branches/0.89-fb/pom.xml

Modified: hbase/branches/0.89-fb/pom.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.89-fb/pom.xml?rev=1586737&r1=1586736&r2=1586737&view=diff
==============================================================================
--- hbase/branches/0.89-fb/pom.xml (original)
+++ hbase/branches/0.89-fb/pom.xml Fri Apr 11 18:18:32 2014
@@ -564,6 +564,13 @@
               <goal>jar-no-fork</goal>
             </goals>
           </execution>
+          <execution>
+            <id>attach-test-sources</id>
+            <phase>package</phase>
+            <goals>
+              <goal>test-jar-no-fork</goal>
+            </goals>
+          </execution>
         </executions>
       </plugin>
       <plugin>