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 <[email protected]> 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 <[email protected]> Authored: Wed Aug 15 18:41:27 2012 +0200 Committer: jwills <[email protected]> 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>
