IO.
Commons-IO contains utility classes, stream implementations, file filters, and endian classes..
Here is the list of declaration for commons-io. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for commons-io is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: /LICENSE.txt.
The commons-io-1.2 has 1 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.1 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. | 1966 |
The following table lists the most popular artifacts which are depending on commons-io-1.2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Development | stripes 1.5 Stripes web framework jar, including tag library. | 8 |
Message Queue | amqp-client 2.8.7 RabbitMQ AMQP Java Client | 16 |
MIME | apache-mime4j 0.6 Java stream based MIME message parser | 27 |
Development | stripes 1.5.1 Stripes web framework jar, including tag library. | 5 |
Message Queue | amqp-client 2.8.6 RabbitMQ AMQP Java Client | 11 |
Development | stripes 1.4.3 Stripes web framework jar, including tag library. | 5 |
Directory Server | apacheds-core 1.0-RC3 Server's core contains the JNDI provider, interceptors, schema, and database subsystems. The core is the heart of the server without protocols enabled. | 6 |
Message Queue | amqp-client 3.3.1 RabbitMQ AMQP Java Client | 13 |
The following plugins are used in the commons-io-1.2.jar
The following packages are defined in the commons-io-1.2.jar
net.sf.staccatocommons.io net.sf.staccatocommons.io.internal net.sf.staccatocommons.io.internal.lifecycle net.sf.staccatocommons.io.preferences net.sf.staccatocommons.io.restrictions net.sf.staccatocommons.io.serialization net.sf.staccatocommons.io.serialization.lifecycle
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?><project> <modelVersion>4.0.0</modelVersion> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <name>IO</name> <version>1.2</version> <description>Commons-IO contains utility classes, stream implementations, file filters, and endian classes.</description> <url>http://jakarta.apache.org/commons/io/</url> <issueManagement> <url>http://issues.apache.org/bugzilla/</url> </issueManagement> <ciManagement> <notifiers> <notifier> <configuration> <address>commons-dev@jakarta.apache.org</address> </configuration> </notifier> </notifiers> </ciManagement> <inceptionYear>2002</inceptionYear> <mailingLists> <mailingList> <name>Commons Dev List</name> <subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe> <unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe> <archive>http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-dev@jakarta.apache.org</archive> </mailingList> <mailingList> <name>Commons User List</name> <subscribe>commons-user-subscribe@jakarta.apache.org</subscribe> <unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe> <archive>http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=commons-user@jakarta.apache.org</archive> </mailingList> </mailingLists> <contributors> <contributor> <name>Rahul Akolkar</name> </contributor> <contributor> <name>Jason Anderson</name> </contributor> <contributor> <name>Nathan Beyer</name> </contributor> <contributor> <name>Chris Eldredge</name> </contributor> <contributor> <name>Jim Harrington</name> </contributor> <contributor> <name>Thomas Ledoux</name> </contributor> <contributor> <name>Andy Lehane</name> </contributor> <contributor> <name>Marcelo Liberato</name> </contributor> <contributor> <name>Alban Peignier</name> <email>alban.peignier at free.fr</email> </contributor> <contributor> <name>Niall Pemberton</name> </contributor> <contributor> <name>Ian Springer</name> </contributor> <contributor> <name>Masato Tezuka</name> </contributor> <contributor> <name>Frank W. Zammetti</name> </contributor> </contributors> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>/LICENSE.txt</url> </license> </licenses> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk</connection> <url>http://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk</url> </scm> <organization> <name>The Apache Software Foundation</name> <url>http://jakarta.apache.org</url> </organization> <build> <sourceDirectory>src/java</sourceDirectory> <testSourceDirectory>src/test</testSourceDirectory> <resources> <resource> <targetPath>META-INF</targetPath> <directory>.</directory> <includes> <include>NOTICE.txt</include> </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test*</include> </includes> <excludes> <exclude>**/*AbstractTestCase*</exclude> <exclude>**/AllIOTestSuite*</exclude> <exclude>**/PackageTestSuite*</exclude> <exclude>**/testtools/**</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>maven-plugins</groupId> <artifactId>maven-cobertura-plugin</artifactId> <version>1.1.1</version> <configuration> <scope>test</scope> <comment>Required only for generating test coverage reports.</comment> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>default</id> <name>Default Repository</name> <url>file:///www/jakarta.apache.org/builds/jakarta-commons/io/</url> </repository> <site> <id>default</id> <name>Default Site</name> <url>scp://people.apache.org//www/jakarta.apache.org/commons/io/</url> </site> <status>converted</status> </distributionManagement> </project>