FELIX-4863 : SSLFilter 0.1.0 and 0.2.0 have a Java race condition, stopping the Filter from working correctly

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1676457 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/http/sslfilter/pom.xml b/http/sslfilter/pom.xml
index c8633b8..458a9c1 100644
--- a/http/sslfilter/pom.xml
+++ b/http/sslfilter/pom.xml
@@ -76,13 +76,14 @@
         <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>org.apache.felix.http.servlet-api</artifactId>
-            <version>[1.0,1.2)</version>
+            <version>1.1.0</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>org.apache.felix.http.api</artifactId>
-            <version>[2.0,3)</version>
+            <version>2.3.2</version>
+            <scope>provided</scope>
         </dependency>
 
         <!-- Test Dependencies -->
@@ -104,13 +105,13 @@
             <version>3.2.1</version>
             <scope>test</scope>
         </dependency>
-
         <dependency>
           <groupId>org.eclipse.jetty</groupId>
           <artifactId>jetty-servlet</artifactId>
           <version>${jetty.version}</version>
           <scope>test</scope>
         </dependency>
+
     </dependencies>
 
 </project>