Maven Repository - POM file for JBoss jboss-common-core 2.2.8.GA 2.2.8.GA

Summary

JBoss Common Classes.

JBoss Common Core Utility classes.

Declaration

Here is the list of declaration for jboss-common-core. 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-common-core</artifactId>
   <version>2.2.8.GA</version>
</dependency>

If you think this Maven repository POM file listing for jboss-common-core is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The jboss-common-core-2.2.8.GA has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Logjboss-logging-spi 2.0.5.GA
The JBoss Logging Framework Programming Interface
40
JUnitjunit 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




Plugin

The following plugins are used in the jboss-common-core-2.2.8.GA.jar

  1. jboss-deploy-maven-plugin
  2. maven-release-plugin

Packages

The following packages are defined in the jboss-common-core-2.2.8.GA.jar

org.jboss.net.protocol
org.jboss.net.protocol.file
org.jboss.net.protocol.http
org.jboss.net.protocol.njar
org.jboss.net.protocol.resource
org.jboss.net.sockets
org.jboss.net.ssl
org.jboss.util
org.jboss.util.builder
org.jboss.util.collection
org.jboss.util.deadlock
org.jboss.util.file
org.jboss.util.graph
org.jboss.util.id
org.jboss.util.loading
org.jboss.util.naming
org.jboss.util.platform
org.jboss.util.property
org.jboss.util.property.jmx
org.jboss.util.propertyeditor
org.jboss.util.state
org.jboss.util.state.xml
org.jboss.util.stream
org.jboss.util.threadpool
org.jboss.util.timeout
org.jboss.util.xml
org.jboss.util.xml.catalog
org.jboss.util.xml.catalog.helpers
org.jboss.util.xml.catalog.readers




POM File Source

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>3</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.jboss</groupId>   
  <artifactId>jboss-common-core</artifactId>
  <version>2.2.8.GA</version>
  <packaging>jar</packaging>
  <name>JBoss Common Classes</name>
  <url>http://www.jboss.org</url>
  <description>JBoss Common Core Utility classes</description>
  <scm>
    <connection>scm:svn:https://svn.jboss.org/repos/common/common-core/tags/2.2.8.GA</connection>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
          <!-- The tagBase property is needed during the release process so that the maven release plugin
            will create the release tag in the appropriate location. -->
          <tagBase>https://svn.jboss.org/repos/common/common-core/tags</tagBase>
        </configuration>
      </plugin>
      <plugin>
        <groupId>jboss.maven-plugins</groupId>
        <artifactId>jboss-deploy-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </build>
  <repositories>
    <repository>
      <id>repository.jboss.org</id>
      <name>JBoss Repository</name>
      <layout>default</layout>
      <url>http://repository.jboss.org/maven2/</url>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>
    <repository>
      <id>snapshots.jboss.org</id>
      <name>JBoss Snapshot Repository</name>
      <layout>default</layout>
      <url>http://snapshots.jboss.org/maven2/</url>
      <releases>
        <enabled>false</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>
  
  <dependencies>
  
    <dependency>
      <groupId>apache-httpclient</groupId>
      <artifactId>commons-httpclient</artifactId>
      <version>2.0.2</version>
      <scope>compile</scope>
      <optional>true</optional> <!-- org.jboss.net.protocol.http.DavURLLister -->
    </dependency>
    
    <dependency>
      <groupId>apache-slide</groupId>
      <artifactId>webdavlib</artifactId>
      <version>2.0</version>
      <scope>compile</scope>
      <optional>true</optional> <!-- org.jboss.net.protocol.http.DavURLLister -->
    </dependency>

    <dependency>
      <groupId>org.jboss.logging</groupId>
      <artifactId>jboss-logging-spi</artifactId>
      <version>2.0.5.GA</version>
      <scope>compile</scope>
    </dependency>
    
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.4</version>
      <scope>test</scope>
    </dependency>
    
  </dependencies>  
  
</project>