Fixed the <exclusion> to be inside of <exclusions>.


git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@705250 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/pom.xml b/framework/pom.xml
index a11c4be..199baa7 100644
--- a/framework/pom.xml
+++ b/framework/pom.xml
@@ -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>