You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ri...@apache.org on 2008/10/16 16:15:24 UTC

svn commit: r705250 - /felix/trunk/framework/pom.xml

Author: rickhall
Date: Thu Oct 16 07:15:23 2008
New Revision: 705250

URL: http://svn.apache.org/viewvc?rev=705250&view=rev
Log:
Fixed the <exclusion> to be inside of <exclusions>.

Modified:
    felix/trunk/framework/pom.xml

Modified: felix/trunk/framework/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/framework/pom.xml?rev=705250&r1=705249&r2=705250&view=diff
==============================================================================
--- felix/trunk/framework/pom.xml (original)
+++ felix/trunk/framework/pom.xml Thu Oct 16 07:15:23 2008
@@ -38,10 +38,12 @@
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.compendium</artifactId>
       <version>1.2.0</version>
-      <exclusion>
-        <groupId>${pom.groupId}</groupId>
-        <artifactId>javax.servlet</artifactId>
-      </exclusion>
+      <exclusions>
+        <exclusion>
+          <groupId>${pom.groupId}</groupId>
+          <artifactId>javax.servlet</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
   </dependencies>
   <build>