JBoss Microcontainer Dependency.
Here is the list of declaration for jboss-dependency. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jboss.microcontainer</groupId> <artifactId>jboss-dependency</artifactId> <version>2.0.6.GA</version> </dependency>
If you think this Maven repository POM file listing for jboss-dependency is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following plugins are used in the jboss-dependency-2.0.6.GA.jar
The following packages are defined in the jboss-dependency-2.0.6.GA.jar
org.jboss.dependency.plugins org.jboss.dependency.plugins.action org.jboss.dependency.plugins.graph org.jboss.dependency.spi org.jboss.dependency.spi.dispatch org.jboss.dependency.spi.graph org.jboss.dependency.spi.helpers
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.microcontainer</groupId> <artifactId>jboss-microcontainer</artifactId> <version>2.0.6.GA</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jboss-dependency</artifactId> <packaging>jar</packaging> <name>JBoss Microcontainer Dependency</name> <url>http://www.jboss.com/products/jbossmc</url> <description>JBoss Microcontainer Dependency</description> <scm> <connection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/microcontainer/tags/2.0.6.GA/dependency</connection> <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/microcontainer/tags/2.0.6.GA/dependency</developerConnection> <url>scm:svn:https://svn.jboss.org/repos/jbossas/projects/microcontainer/tags/2.0.6.GA/dependency</url> </scm> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/assembly/spi.xml</descriptor> <descriptor>src/assembly/plugins.xml</descriptor> </descriptors> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/AbstractDependencyTest*</exclude> <exclude>**/TestControllerContext*</exclude> <exclude>**/TestDelegate*</exclude> </excludes> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> </plugin> </plugins> </build> <!-- Do not add version information here, use ../pom.xml instead --> <dependencies> <!-- Global dependencies --> <dependency> <groupId>org.jboss</groupId> <artifactId>jbossxb</artifactId> </dependency> <dependency> <groupId>org.jboss</groupId> <artifactId>jboss-reflect</artifactId> </dependency> <dependency> <groupId>org.jboss</groupId> <artifactId>jboss-mdr</artifactId> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-spi</artifactId> </dependency> <dependency> <groupId>org.jboss</groupId> <artifactId>jboss-common-core</artifactId> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-log4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.test</groupId> <artifactId>jboss-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project>