JBoss VFS.
A VFS library.
Here is the list of declaration for jboss-vfs. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jboss</groupId> <artifactId>jboss-vfs</artifactId> <version>2.2.0.SP1</version> </dependency>
If you think this Maven repository POM file listing for jboss-vfs is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:lgpl
URL: http://repository.jboss.org/licenses/lgpl.txt.
The jboss-vfs-2.2.0.SP1 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 |
---|---|---|
JBoss | jboss-common-core 2.2.17.GA JBoss Common Core Utility classes | 16 |
Log | jboss-logging-spi 2.1.1.GA The JBoss Logging Framework Programming Interface | 8 |
JBoss | jboss-test 1.1.0.GA Common test support classes | 7 |
JUnit | junit 4.4 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. | 301 |
The following plugins are used in the jboss-vfs-2.2.0.SP1.jar
The following packages are defined in the jboss-vfs-2.2.0.SP1.jar
org.jboss.virtual org.jboss.virtual.plugins.cache org.jboss.virtual.plugins.context org.jboss.virtual.plugins.context.file org.jboss.virtual.plugins.context.helpers org.jboss.virtual.plugins.context.jar org.jboss.virtual.plugins.context.memory org.jboss.virtual.plugins.context.temp org.jboss.virtual.plugins.context.vfs org.jboss.virtual.plugins.context.zip org.jboss.virtual.plugins.copy org.jboss.virtual.plugins.registry org.jboss.virtual.plugins.vfs org.jboss.virtual.plugins.vfs.helpers org.jboss.virtual.protocol org.jboss.virtual.protocol.vfs org.jboss.virtual.protocol.vfsfile org.jboss.virtual.protocol.vfsjar org.jboss.virtual.protocol.vfsmemory org.jboss.virtual.protocol.vfszip org.jboss.virtual.protocol.zip org.jboss.virtual.spi org.jboss.virtual.spi.cache org.jboss.virtual.spi.cache.helpers org.jboss.virtual.spi.registry
Here is the content of the POM file.
<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"> <parent> <groupId>org.jboss</groupId> <artifactId>jboss-parent</artifactId> <version>5</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jboss</groupId> <artifactId>jboss-vfs</artifactId> <packaging>jar</packaging> <version>2.2.0.SP1</version> <name>JBoss VFS</name> <url>http://www.jboss.org</url> <description>A VFS library</description> <scm> <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/vfs/tags/2.2.0.SP1</connection> <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/vfs/tags/2.2.0.SP1</developerConnection> <url>https://svn.jboss.org/repos/jbossas/projects/vfs/tags/2.2.0.SP1</url> </scm> <licenses> <license> <name>lgpl</name> <url>http://repository.jboss.org/licenses/lgpl.txt</url> </license> </licenses> <organization> <name>JBoss, A division of Red Hat, Inc</name> <url>http://www.jboss.org</url> </organization> <properties> <version.jboss.common.core>2.2.17.GA</version.jboss.common.core> <version.jboss.logging>2.1.1.GA</version.jboss.logging> <version.jboss.test>1.1.0.GA</version.jboss.test> <version.junit>4.4</version.junit> </properties> <build> <sourceDirectory>src/main/java</sourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <finalName>${artifactId}</finalName> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <!-- define how we want compilation to take place here, we accept most of the defaults but say that we want the optimization flag set, and define the source and target to be 1.5, these setting will be inherited by child projects --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0</version> <configuration> <debug>true</debug> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <!-- define that we wish to create src jars --> <plugin> <artifactId>maven-source-plugin</artifactId> <inherited>true</inherited> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.4.3</version> <configuration> <forkMode>always</forkMode> <!-- required to correctly run the PojoServer tests --> <useSystemClassLoader>true</useSystemClassLoader> <redirectTestOutputToFile>true</redirectTestOutputToFile> <testFailureIgnore>true</testFailureIgnore> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.0-beta-9</version> <configuration> <tagBase>https://svn.jboss.org/repos/jbossas/projects/vfs/tags</tagBase> </configuration> </plugin> <plugin> <artifactId>maven-idea-plugin</artifactId> <configuration> <downloadSources>true</downloadSources> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jboss</groupId> <artifactId>jboss-common-core</artifactId> <version>${version.jboss.common.core}</version> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-spi</artifactId> <version>${version.jboss.logging}</version> </dependency> <dependency> <groupId>org.jboss.test</groupId> <artifactId>jboss-test</artifactId> <version>${version.jboss.test}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> </dependencies> </project>