Commons VFS Core.
VFS is a Virtual File System library..
Here is the list of declaration for commons-vfs2. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-vfs2</artifactId> <version>2.0</version> </dependency>
If you think this Maven repository POM file listing for commons-vfs2 is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The following table lists the most popular artifacts which are depending on commons-vfs2-2.0. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Development | reflections 0.9.9-RC2 Reflections - a Java runtime metadata analysis | 5 |
Library | core 1.3 Core library functionality concerned with general programming problems rather than multimedia specific functionality. Includes I/O utilities, randomisation, hashing and type conversion. | 13 |
Library | AnalyzerBeans-core 0.20 Core module of AnalyzerBeans, provides a bare-bones engine for composing and executing AnalyzerBeans jobs | 17 |
Data Structure | commons-configuration 1.7 Tools to assist in the reading of configuration/preferences files in various formats | 44 |
Library | core 1.3.1 Core library functionality concerned with general programming problems rather than multimedia specific functionality. Includes I/O utilities, randomisation, hashing and type conversion. | 15 |
Library | AnalyzerBeans-core 0.17 Core module of AnalyzerBeans, provides a bare-bones engine for composing and executing AnalyzerBeans jobs | 15 |
Library | AnalyzerBeans-core 0.21 Core module of AnalyzerBeans, provides a bare-bones engine for composing and executing AnalyzerBeans jobs | 17 |
Data Structure | commons-configuration 1.8 Tools to assist in the reading of configuration/preferences files in various formats | 72 |
Data Structure | commons-configuration 1.9 Tools to assist in the reading of configuration/preferences files in various formats | 15 |
The following plugins are used in the commons-vfs2-2.0.jar
The following packages are defined in the commons-vfs2-2.0.jar
org.apache.commons.vfs2 org.apache.commons.vfs2.auth org.apache.commons.vfs2.cache org.apache.commons.vfs2.events org.apache.commons.vfs2.impl org.apache.commons.vfs2.operations org.apache.commons.vfs2.operations.vcs org.apache.commons.vfs2.provider org.apache.commons.vfs2.provider.bzip2 org.apache.commons.vfs2.provider.compressed org.apache.commons.vfs2.provider.ftp org.apache.commons.vfs2.provider.ftps org.apache.commons.vfs2.provider.gzip org.apache.commons.vfs2.provider.http org.apache.commons.vfs2.provider.https org.apache.commons.vfs2.provider.jar org.apache.commons.vfs2.provider.local org.apache.commons.vfs2.provider.ram org.apache.commons.vfs2.provider.res org.apache.commons.vfs2.provider.sftp org.apache.commons.vfs2.provider.tar org.apache.commons.vfs2.provider.temp org.apache.commons.vfs2.provider.url org.apache.commons.vfs2.provider.webdav org.apache.commons.vfs2.provider.zip org.apache.commons.vfs2.tasks org.apache.commons.vfs2.util
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <name>Commons VFS Core</name> <groupId>org.apache.commons</groupId> <artifactId>commons-vfs2</artifactId> <version>2.0</version> <description>VFS is a Virtual File System library.</description> <parent> <groupId>org.apache.commons</groupId> <artifactId>commons-vfs2-project</artifactId> <version>2.0</version> <relativePath>../</relativePath> </parent> <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </dependency> <dependency> <groupId>ant</groupId> <artifactId>ant</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>commons-net</groupId> <artifactId>commons-net</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.jackrabbit</groupId> <artifactId>jackrabbit-webdav</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <properties> <vfs.parent.dir>${basedir}/..</vfs.parent.dir> </properties> <build> <resources> <resource> <directory>src/main/java</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> <resource> <directory>${vfs.parent.dir}</directory> <targetPath>META-INF</targetPath> <includes> <include>NOTICE.txt</include> <include>LICENSE.txt</include> </includes> </resource> </resources> <!-- include NOTICE/LICENSE in generated test jar --> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> <testResource> <directory>${vfs.parent.dir}</directory> <targetPath>META-INF</targetPath> <includes> <include>NOTICE.txt</include> <include>LICENSE.txt</include> </includes> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>process-test-classes</phase> <configuration> <target> <move todir="${project.build.testOutputDirectory}/test-data/code" failonerror="false"> <fileset dir="${project.build.testOutputDirectory}/code" /> </move> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <test.basedir>target/test-classes/test-data</test.basedir> <test.basedir.res>test-data</test.basedir.res> </systemPropertyVariables> <excludes> <!-- Main class --> <exclude>**/RunTest.java</exclude> <!-- inner classes --> <exclude>**/*$*</exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>webdav</id> <activation> <activeByDefault>false</activeByDefault> </activation> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.5.6</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.5.6</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <test.basedir>target/test-classes/test-data</test.basedir> <test.basedir.res>test-data</test.basedir.res> <test.webdav.uri>${test.webdav.uri}</test.webdav.uri> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>ftp</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <test.basedir>target/test-classes/test-data</test.basedir> <test.basedir.res>test-data</test.basedir.res> <test.ftp.uri>${test.ftp.uri}</test.ftp.uri> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>sftp</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <test.basedir>target/test-classes/test-data</test.basedir> <test.basedir.res>test-data</test.basedir.res> <test.sftp.uri>${test.sftp.uri}</test.sftp.uri> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>http</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <test.basedir>target/test-classes/test-data</test.basedir> <test.basedir.res>test-data</test.basedir.res> <test.http.uri>${test.http.uri}</test.http.uri> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>