Author: jdcasey Date: Mon Feb 18 17:19:40 2008 New Revision: 628949 URL: http://svn.apache.org/viewvc?rev=628949&view=rev Log: [MASSEMBLY-275] Configuration to make it easier to narrow the set of ITs to run, for debugging purposes.
Submitted by: Paul Gier Modified: maven/plugins/trunk/maven-assembly-plugin/pom.xml Modified: maven/plugins/trunk/maven-assembly-plugin/pom.xml URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/pom.xml?rev=628949&r1=628948&r2=628949&view=diff ============================================================================== --- maven/plugins/trunk/maven-assembly-plugin/pom.xml (original) +++ maven/plugins/trunk/maven-assembly-plugin/pom.xml Mon Feb 18 17:19:40 2008 @@ -176,6 +176,8 @@ <properties> <test.remote.repo.url>file://${project.build.testOutputDirectory}/remote-repository</test.remote.repo.url> + <it.pomIncludes>**/pom.xml</it.pomIncludes> + <it.streamLogs>false</it.streamLogs> </properties> <build> @@ -282,18 +284,10 @@ <testPropertiesFile>test.properties</testPropertiesFile> <debug>true</debug> - <!-- Useful config for debugging one IT --> - <!-- <pomIncludes> - <pomInclude>mojo-configuration/no-appendAssemblyId-no-classifier/pom.xml</pomInclude> - </pomIncludes> - <streamLogs>true</streamLogs> - --> - <!-- END single-IT debugging block. --> - - <pomIncludes> - <pomInclude>**/pom.xml</pomInclude> + <pomInclude>${it.pomIncludes}</pomInclude> </pomIncludes> + <streamLogs>${it.streamLogs}</streamLogs> <pomExcludes> <pomExclude>repositories/repo-with-snapshot-parents/pom.xml</pomExclude>