You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jg...@apache.org on 2011/12/11 22:04:17 UTC

svn commit: r1213064 - in /karaf/branches/karaf-2.2.x: pom.xml tooling/features-maven-plugin/pom.xml

Author: jgoodyear
Date: Sun Dec 11 21:04:17 2011
New Revision: 1213064

URL: http://svn.apache.org/viewvc?rev=1213064&view=rev
Log:
[KARAF-1104] Add plexus-utils dependency to features-maven-plugin to allow it to work with Maven 2.2.x to create KARs

Adding dependency in features-maven-plugin on plexus-utils 2.1 in order to allow maven 2.x to build kars.


Modified:
    karaf/branches/karaf-2.2.x/pom.xml
    karaf/branches/karaf-2.2.x/tooling/features-maven-plugin/pom.xml

Modified: karaf/branches/karaf-2.2.x/pom.xml
URL: http://svn.apache.org/viewvc/karaf/branches/karaf-2.2.x/pom.xml?rev=1213064&r1=1213063&r2=1213064&view=diff
==============================================================================
--- karaf/branches/karaf-2.2.x/pom.xml (original)
+++ karaf/branches/karaf-2.2.x/pom.xml Sun Dec 11 21:04:17 2011
@@ -153,6 +153,7 @@
         <pax.url.version>1.2.8</pax.url.version>
         <pax.web.version>1.0.8</pax.web.version>
         <pax.tinybundles.version>1.3.0</pax.tinybundles.version>
+        <plexus.utils.version>2.1</plexus.utils.version>
         <servlet.api.version>2.5</servlet.api.version>
         <slf4j.version>1.6.1</slf4j.version>
         <spring.osgi.version>1.2.1</spring.osgi.version>

Modified: karaf/branches/karaf-2.2.x/tooling/features-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/karaf/branches/karaf-2.2.x/tooling/features-maven-plugin/pom.xml?rev=1213064&r1=1213063&r2=1213064&view=diff
==============================================================================
--- karaf/branches/karaf-2.2.x/tooling/features-maven-plugin/pom.xml (original)
+++ karaf/branches/karaf-2.2.x/tooling/features-maven-plugin/pom.xml Sun Dec 11 21:04:17 2011
@@ -100,6 +100,11 @@
             <artifactId>easymock</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-utils</artifactId>
+            <version>${plexus.utils.version}</version>
+        </dependency>
     </dependencies>
 
     <build>