You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ju...@apache.org on 2010/02/03 20:08:46 UTC

svn commit: r906181 - /sling/trunk/launchpad/builder/pom.xml

Author: justin
Date: Wed Feb  3 19:08:46 2010
New Revision: 906181

URL: http://svn.apache.org/viewvc?rev=906181&view=rev
Log:
using standard addition / removal syntax

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

Modified: sling/trunk/launchpad/builder/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/launchpad/builder/pom.xml?rev=906181&r1=906180&r2=906181&view=diff
==============================================================================
--- sling/trunk/launchpad/builder/pom.xml (original)
+++ sling/trunk/launchpad/builder/pom.xml Wed Feb  3 19:08:46 2010
@@ -53,11 +53,11 @@
         <test.host>localhost</test.host>
 
         <!--
-            Disable Jetty webapp rescan (override with -D) 
+            Disable Jetty webapp rescan (override with -D)
         -->
         <jetty.scan.interval.seconds>0</jetty.scan.interval.seconds>
 
-        <!-- 
+        <!--
             Sling home directory when starting with jetty:run
         -->
         <jetty.sling.home>target/sling</jetty.sling.home>
@@ -103,12 +103,22 @@
                         </goals>
                         <configuration>
                             <additionalBundles>
-                                <bundle>mvn:org.apache.geronimo.specs/geronimo-jta_1.1_spec/1.1.1</bundle>
+                                <bundle>
+                                    <groupId>org.apache.geronimo.specs</groupId>
+                                    <artifactId>geronimo-jta_1.1_spec</artifactId>
+                                    <version>1.1.1</version>
+                                </bundle>
                             </additionalBundles>
-                            <exclusions>
-                                <exclusion>org.apache.felix:org.apache.felix.configadmin</exclusion>
-                                <exclusion>org.apache.felix:org.apache.felix.webconsole</exclusion>
-                            </exclusions>
+                            <bundleExclusions>
+                                <bundle>
+                                    <groupId>org.apache.felix</groupId>
+                                    <artifactId>org.apache.felix.configadmin</artifactId>
+                                </bundle>
+                                <bundle>
+                                    <groupId>org.apache.felix</groupId>
+                                    <artifactId>org.apache.felix.webconsole</artifactId>
+                                </bundle>
+                            </bundleExclusions>
                         </configuration>
                     </execution>
                     <execution>