You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by fm...@apache.org on 2012/08/24 09:24:21 UTC

svn commit: r1376846 - /sling/trunk/launchpad/base/pom.xml

Author: fmeschbe
Date: Fri Aug 24 07:24:20 2012
New Revision: 1376846

URL: http://svn.apache.org/viewvc?rev=1376846&view=rev
Log:
Don't try to build test bundles if test classes are not built due to maven.test.skip=true

Modified:
    sling/trunk/launchpad/base/pom.xml

Modified: sling/trunk/launchpad/base/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/launchpad/base/pom.xml?rev=1376846&r1=1376845&r2=1376846&view=diff
==============================================================================
--- sling/trunk/launchpad/base/pom.xml (original)
+++ sling/trunk/launchpad/base/pom.xml Fri Aug 24 07:24:20 2012
@@ -52,11 +52,13 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-antrun-plugin</artifactId>
+                <version>1.7</version>
                 <executions>
                     <execution>
                         <id>testbundles</id>
                         <phase>process-test-classes</phase>
                         <configuration>
+                            <skip>${maven.test.skip}</skip>
                             <target name="build">
                                 <taskdef resource="aQute/bnd/ant/taskdef.properties"
                                     classpathref="maven.plugin.classpath" />