Repository: giraph Updated Branches: refs/heads/trunk 54a1a8ded -> d49edb82f
GIRAPH-956. disable tests for a few components in hadoop_2 profile Project: http://git-wip-us.apache.org/repos/asf/giraph/repo Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/d49edb82 Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/d49edb82 Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/d49edb82 Branch: refs/heads/trunk Commit: d49edb82f13f1e9c295f21d966bcb246d0bae3bd Parents: 54a1a8d Author: Roman Shaposhnik <[email protected]> Authored: Sat Oct 25 16:45:21 2014 -0700 Committer: Roman Shaposhnik <[email protected]> Committed: Sat Oct 25 16:45:21 2014 -0700 ---------------------------------------------------------------------- giraph-accumulo/pom.xml | 4 ++++ giraph-hbase/pom.xml | 4 ++++ giraph-hive/pom.xml | 10 ++++++++++ pom.xml | 2 ++ 4 files changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/giraph/blob/d49edb82/giraph-accumulo/pom.xml ---------------------------------------------------------------------- diff --git a/giraph-accumulo/pom.xml b/giraph-accumulo/pom.xml index b5e6121..7c2016f 100644 --- a/giraph-accumulo/pom.xml +++ b/giraph-accumulo/pom.xml @@ -67,6 +67,7 @@ under the License. <artifactId>maven-surefire-plugin</artifactId> <version>2.6</version> <configuration> + <skip>${surefire.skip}</skip> <systemProperties> <property> <name>prop.jarLocation</name> @@ -112,6 +113,9 @@ under the License. <profile> <id>hadoop_2</id> + <properties> + <surefire.skip>true</surefire.skip> + </properties> <dependencies> <dependency> <groupId>org.apache.hadoop</groupId> http://git-wip-us.apache.org/repos/asf/giraph/blob/d49edb82/giraph-hbase/pom.xml ---------------------------------------------------------------------- diff --git a/giraph-hbase/pom.xml b/giraph-hbase/pom.xml index 3782d38..d6bdc92 100644 --- a/giraph-hbase/pom.xml +++ b/giraph-hbase/pom.xml @@ -71,6 +71,7 @@ under the License. <artifactId>maven-surefire-plugin</artifactId> <version>2.6</version> <configuration> + <skip>${surefire.skip}</skip> <systemProperties> <property> <name>prop.jarLocation</name> @@ -116,6 +117,9 @@ under the License. <profile> <id>hadoop_2</id> + <properties> + <surefire.skip>true</surefire.skip> + </properties> <dependencies> <dependency> <groupId>org.apache.hadoop</groupId> http://git-wip-us.apache.org/repos/asf/giraph/blob/d49edb82/giraph-hive/pom.xml ---------------------------------------------------------------------- diff --git a/giraph-hive/pom.xml b/giraph-hive/pom.xml index c20c308..dbe93e2 100644 --- a/giraph-hive/pom.xml +++ b/giraph-hive/pom.xml @@ -37,6 +37,15 @@ under the License. <top.dir>${project.basedir}/..</top.dir> </properties> + <profiles> + <profile> + <id>hadoop_2</id> + <properties> + <surefire.skip>true</surefire.skip> + </properties> + </profile> + </profiles> + <build> <plugins> <plugin> @@ -67,6 +76,7 @@ under the License. <artifactId>maven-surefire-plugin</artifactId> <version>2.6</version> <configuration> + <skip>${surefire.skip}</skip> <systemProperties> <property> <name>prop.jarLocation</name> http://git-wip-us.apache.org/repos/asf/giraph/blob/d49edb82/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 6804de9..1833011 100644 --- a/pom.xml +++ b/pom.xml @@ -272,6 +272,8 @@ under the License. <project.build.targetJdk>1.7</project.build.targetJdk> <giraph.maven.dependency.plugin.skip>false</giraph.maven.dependency.plugin.skip> <giraph.maven.duplicate.finder.skip>false</giraph.maven.duplicate.finder.skip> + <!-- This lets modules skip unit tests. More details: GIRAPH-957 --> + <surefire.skip>false</surefire.skip> <dep.avro.version>1.7.6</dep.avro.version> <dep.accumulo.version>1.4.0</dep.accumulo.version>
