Commons FileUpload.
The FileUpload component provides a simple yet flexible means of adding support for multipart file upload functionality to servlets and web applications..
Here is the list of declaration for commons-fileupload. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.2.1</version> </dependency>
If you think this Maven repository POM file listing for commons-fileupload is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The commons-fileupload-1.2.1 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
File | commons-io 1.3.2 Commons-IO contains utility classes, stream implementations, file filters, and endian classes. | 71 |
The following table lists the most popular artifacts which are depending on commons-fileupload-1.2.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JSF | tomahawk 1.1.10 JSF components and utilities that can be used with any JSF implementation. This library is compatible with both JSF1.1 and JSF1.2; however for JSF1.2 users there is an alternative build of Tomahawk available that takes advantage of JSF1.2 features to offer some additional benefits. | 36 |
Search | solr-core 1.4.0 Apache Solr Server | 24 |
Library | xlightweb 2.13.2 xLightweb is a lightweight, high performance, scalable web network library | 60 |
Library | vraptor 3.4.0 Java web MVC framework for fast and maintainable development | 11 |
JUnit | htmlunit 2.7 A headless browser intended for use in testing web-based applications. | 6 |
Http | stapler 1.93 Stapler HTTP request handling engine | 16 |
JSF | tomahawk12 1.1.9 JSF components and utilities that can be used with any JSF implementation. This library is based on the JSF1.1 version of Tomahawk, but with minor source code and build changes to take advantage of JSF1.2 features. A JSF1.2 implementation is required to use this version of the Tomahawk ... | 7 |
JUnit | htmlunit 2.2-hudson-10 A headless browser intended for use in testing web-based applications. | 18 |
Http | stapler 1.86 Stapler HTTP request handling engine | 8 |
Library | xlightweb 2.13 xLightweb is a lightweight, high performance, scalable web network library | 17 |
JUnit | htmlunit 2.3 A headless browser intended for use in testing web-based applications. | 17 |
Library | vraptor 3.4.1 Java web MVC framework for fast and maintainable development | 12 |
Http | stapler 1.96 Stapler HTTP request handling engine | 9 |
The following plugins are used in the commons-fileupload-1.2.1.jar
The following packages are defined in the commons-fileupload-1.2.1.jar
org.apache.commons.fileupload org.apache.commons.fileupload.disk org.apache.commons.fileupload.portlet org.apache.commons.fileupload.servlet org.apache.commons.fileupload.util
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?><project> <parent> <artifactId>commons-parent</artifactId> <groupId>org.apache.commons</groupId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <name>Commons FileUpload</name> <version>1.2.1</version> <description>The FileUpload component provides a simple yet flexible means of adding support for multipart file upload functionality to servlets and web applications.</description> <url>http://commons.apache.org/fileupload/</url> <issueManagement> <system>jira</system> <url>http://issues.apache.org/jira/browse/FILEUPLOAD</url> </issueManagement> <inceptionYear>2002</inceptionYear> <contributors> <contributor> <name>Aaron Freeman</name> <email>aaron@sendthisfile.com</email> </contributor> <contributor> <name>Gary Gregory</name> <email>ggregory@seagullsw.com</email> </contributor> <contributor> <name>Michael Macaluso</name> <email>michael.public@wavecorp.com</email> </contributor> <contributor> <name>Amichai Rothman</name> <email>amichai2@amichais.net</email> </contributor> <contributor> <name>Alexander Sova</name> <email>bird@noir.crocodile.org</email> </contributor> <contributor> <name>Thomas Vandahl</name> <email>tv@apache.org</email> </contributor> <contributor> <name>Henry Yandell</name> <email>bayard@apache.org</email> </contributor> </contributors> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/fileupload/trunk</connection> <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk</developerConnection> <url>http://svn.apache.org/viewvc/commons/proper/fileupload/trunk</url> </scm> <build> <sourceDirectory>src/java</sourceDirectory> <testSourceDirectory>src/test</testSourceDirectory> <pluginManagement> <plugins> <plugin> <artifactId>maven-site-plugin</artifactId> <version>2.0-beta-6</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/main/assembly/bin.xml</descriptor> <descriptor>src/main/assembly/src.xml</descriptor> </descriptors> <tarLongFileMode>gnu</tarLongFileMode> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Bundle-SymbolicName>org.apache.commons.fileupload</Bundle-SymbolicName> <Bundle-License>http://www.apache.org/licenses/LICENSE-2.0.txt</Bundle-License> <Bundle-ManifestVersion>2</Bundle-ManifestVersion> <Bundle-Name>Apache Commons FileUpload Bundle</Bundle-Name> <Bundle-Vendor>${project.organization.name}</Bundle-Vendor> <Bundle-Version>1.2.1</Bundle-Version> <Export-Package>org.apache.commons.fileupload;version=1.2.1, org.apache.commons.fileupload.disk;version=1.2.1, org.apache.commons.fileupload.portlet;version=1.2.1, org.apache.commons.fileupload.servlet;version=1.2.1, org.apache.commons.fileupload.util;version=1.2.1</Export-Package> <Import-Package>org.apache.commons.fileupload;version=1.2.1, org.apache.commons.fileupload.disk;version=1.2.1, org.apache.commons.fileupload.portlet;version=1.2.1, org.apache.commons.fileupload.servlet;version=1.2.1, org.apache.commons.fileupload.util;version=1.2.1, org.apache.commons.io, org.apache.commons.io.output, javax.servlet, javax.servlet.http</Import-Package> <DynamicImport-Package>javax.portlet</DynamicImport-Package> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <bottom>Copyright &copy; {inceptionYear}-{currentYear} {organizationName}. All Rights Reserved.</bottom> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>portlet-api</groupId> <artifactId>portlet-api</artifactId> <version>1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.3.2</version> <optional>true</optional> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-changes-plugin</artifactId> <configuration> <issueLinkTemplate>%URL%/../%ISSUE%</issueLinkTemplate> </configuration> <reportSets> <reportSet> <reports> <report>changes-report</report> <report>jira-report</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <configLocation>src/checkstyle/fileupload_checks.xml</configLocation> </configuration> </plugin> <plugin> <artifactId>maven-pmd-plugin</artifactId> <configuration> <rulesets> <ruleset>src/checkstyle/fileupload_basic.xml</ruleset> </rulesets> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>clirr-maven-plugin</artifactId> <configuration> <comparisonVersion>1.2</comparisonVersion> <minSeverity>info</minSeverity> </configuration> </plugin> </plugins> </reporting> <distributionManagement> <status>deployed</status> </distributionManagement> <properties> <maven.compile.source>1.3</maven.compile.source> <maven.compile.target>1.3</maven.compile.target> </properties> </project>