You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@crunch.apache.org by jw...@apache.org on 2012/08/15 21:20:03 UTC

git commit: CRUNCH-41: Speed up mvn test.

Updated Branches:
  refs/heads/master 04438473c -> e487447b0


CRUNCH-41: Speed up mvn test.

Move HBase integration test setup to a later lifecycle phase.
This provides a workaround for bug MDEP-259 in maven-dependency-plugin.

Signed-off-by: jwills <jw...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/incubator-crunch/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-crunch/commit/e487447b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-crunch/tree/e487447b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-crunch/diff/e487447b

Branch: refs/heads/master
Commit: e487447b026cbab779ddcf2c26f05f71558164be
Parents: 0443847
Author: Matthias Friedrich <ma...@mafr.de>
Authored: Wed Aug 15 18:41:27 2012 +0200
Committer: jwills <jw...@apache.org>
Committed: Wed Aug 15 11:05:55 2012 -0700

----------------------------------------------------------------------
 crunch-hbase/pom.xml |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-crunch/blob/e487447b/crunch-hbase/pom.xml
----------------------------------------------------------------------
diff --git a/crunch-hbase/pom.xml b/crunch-hbase/pom.xml
index e79c26a..3bd6e54 100644
--- a/crunch-hbase/pom.xml
+++ b/crunch-hbase/pom.xml
@@ -77,13 +77,12 @@ under the License.
         <artifactId>maven-dependency-plugin</artifactId>
         <executions>
           <execution>
-            <phase>test-compile</phase>
+            <phase>pre-integration-test</phase>
             <goals>
               <goal>copy-dependencies</goal>
             </goals>
             <configuration>
               <outputDirectory>${project.build.directory}/lib</outputDirectory>
-              <excludeArtifactIds>crunch,crunch-test</excludeArtifactIds>
             </configuration>
           </execution>
         </executions>