You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by en...@apache.org on 2011/11/14 01:48:49 UTC

svn commit: r1201565 - /sling/trunk/bundles/engine/pom.xml

Author: enorman
Date: Mon Nov 14 00:48:49 2011
New Revision: 1201565

URL: http://svn.apache.org/viewvc?rev=1201565&view=rev
Log:
SLING-2257 File uploads > 2GB are not available as request parameters (reported by Dominique Pfister)
Removed embedded commons-fileupload and import the same packages from the o.a.c.fileupload v1.2.2 bundle.

Modified:
    sling/trunk/bundles/engine/pom.xml

Modified: sling/trunk/bundles/engine/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/engine/pom.xml?rev=1201565&r1=1201564&r2=1201565&view=diff
==============================================================================
--- sling/trunk/bundles/engine/pom.xml (original)
+++ sling/trunk/bundles/engine/pom.xml Mon Nov 14 00:48:49 2011
@@ -69,14 +69,15 @@
                             org.apache.sling.engine.impl.*
                         </Private-Package>
                         <Import-Package>
+                            org.apache.commons.fileupload;version=1.2,
+                            org.apache.commons.fileupload.disk;version=1.2,
+                            org.apache.commons.fileupload.portlet;version=1.2,
+                            org.apache.commons.fileupload.servlet;version=1.2,
                             org.osgi.service.useradmin;
                             javax.portlet;
                             org.apache.commons.math.*;resolution:=optional,
                             *
                         </Import-Package>
-                        <Embed-Dependency>
-                            commons-fileupload
-                        </Embed-Dependency>
                     </instructions>
                 </configuration>
             </plugin>
@@ -140,7 +141,7 @@
         <dependency>
             <groupId>commons-fileupload</groupId>
             <artifactId>commons-fileupload</artifactId>
-            <version>1.1.1</version>
+            <version>1.2.2</version>
             <scope>provided</scope>
         </dependency>
         <dependency>