Updated Branches: refs/heads/master b73b73215 -> 9a21c9ba7
o there are two distinct steps, setup and run its I'm doing the following to figure out why the ITs won't run in a single pass: LOCAL=`pwd`/repo git clone https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git cd maven-integration-testing rm -rf $LOCAL < /dev/null >&1 mvn clean install -Dmaven.repo.local=$LOCAL mvn clean test -Prun-its,embedded -Dmaven.repo.local=$LOCAL Project: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/commit/9a21c9ba Tree: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/tree/9a21c9ba Diff: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/diff/9a21c9ba Branch: refs/heads/master Commit: 9a21c9ba78ef5becaaa254ef03b33290ccabad30 Parents: b73b732 Author: Jason van Zyl <ja...@tesla.io> Authored: Tue Dec 11 16:43:17 2012 -0500 Committer: Jason van Zyl <ja...@tesla.io> Committed: Tue Dec 11 16:43:17 2012 -0500 ---------------------------------------------------------------------- pom.xml | 23 ++++++++++++++++++----- 1 files changed, 18 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/9a21c9ba/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 840db7f..10a5afb 100644 --- a/pom.xml +++ b/pom.xml @@ -37,11 +37,6 @@ under the License. <name>Maven Core ITs</name> <description>Maven Core Integration Tests provide tooling to test every aspect of Maven functionalities with any Maven version.</description> - <modules> - <module>core-it-support</module> - <module>core-it-suite</module> - </modules> - <scm> <connection>scm:git:https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git</connection> <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/maven-integration-testing.git</developerConnection> @@ -69,6 +64,24 @@ under the License. </pluginManagement> </build> + <profiles> + <profile> + <id>core-it-setup</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + <modules> + <module>core-it-support</module> + </modules> + </profile> + <profile> + <id>run-its</id> + <modules> + <module>core-it-suite</module> + </modules> + </profile> + </profiles> + <repositories> <repository> <id>apache.snapshots</id>