Maven Repository - POM file for JBoss jboss-test 1.1.0.GA 1.1.0.GA

Summary

JBoss Test.

Common test support classes.

Declaration

Here is the list of declaration for jboss-test. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.jboss.test</groupId>
   <artifactId>jboss-test</artifactId>
   <version>1.1.0.GA</version>
</dependency>

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

Depends on

The jboss-test-1.1.0.GA has 9 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
Buildant 1.7.0
Apache Ant
227
JUnitant-junit 1.7.0
contains the junit and junirreport tasks
137
Logjboss-logging-spi 2.0.5.GA
The JBoss Logging Framework Programming Interface
40
Logjboss-logging-log4j 2.0.5.GA
JBoss Logging Log4j Implementation
5
JBossjboss-common-core 2.2.5.GA
JBoss Common Core Utility classes
5
JBossjboss-profiler-jvmti 1.0.0.CR5
JBoss Profiler
12
JUnitjunit 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




Depended by

The following table lists the most popular artifacts which are depending on jboss-test-1.1.0.GA. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
JBossjboss-vfs 2.2.0.SP1
A VFS library
11

Plugin

The following plugins are used in the jboss-test-1.1.0.GA.jar

  1. jboss-deploy-maven-plugin
  2. maven-assembly-plugin
  3. maven-dependency-plugin
  4. maven-release-plugin

Packages

The following packages are defined in the jboss-test-1.1.0.GA.jar

org.jboss.ant.taskdefs
org.jboss.ant.taskdefs.server
org.jboss.test
org.jboss.test.classloader
org.jboss.test.logging
org.jboss.test.logging.jdk
org.jboss.test.security
org.jboss.test.thread
org.jboss.test.util
org.jboss.test.visitor




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.test</groupId>
  <artifactId>jboss-test</artifactId>
  <packaging>jar</packaging>
  <name>JBoss Test</name>
  <version>1.1.0.GA</version>
  <description>Common test support classes</description>
  <url>http://www.jboss.org</url>
  <scm>
    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/test/tags/1.1.0.GA</connection>
    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/test/tags/1.1.0.GA</developerConnection>
  </scm>

  <properties>
    <version.apache.ant>1.7.0</version.apache.ant>
  </properties>

  <build>
    <plugins>
      <!-- Dependency Plugin Configuration -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
      </plugin>
      
      <plugin>
        <groupId>jboss.maven-plugins</groupId>
        <artifactId>jboss-deploy-maven-plugin</artifactId>
      </plugin>
      
      <plugin>
        <!-- To call this plugin, use mvn assembly:assembly -->
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.2-beta-1</version>
        <configuration>
          <descriptors>
            <descriptor>src/main/assembly/dist.xml</descriptor>
          </descriptors>
        </configuration>
      </plugin>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>        
        <artifactId>maven-release-plugin</artifactId>        
        <configuration>
          <tagBase>https://svn.jboss.org/repos/jbossas/projects/test/tags</tagBase>
        </configuration>
      </plugin>
    </plugins>
  </build>
  
   <dependencies>
     <dependency>
       <groupId>org.apache.ant</groupId>
       <artifactId>ant</artifactId>
       <version>${version.apache.ant}</version>
     </dependency>
     
     <dependency>
       <groupId>org.apache.ant</groupId>
       <artifactId>ant-junit</artifactId>
       <version>${version.apache.ant}</version>
     </dependency>

     <dependency>
       <groupId>org.jboss.logging</groupId>
       <artifactId>jboss-logging-spi</artifactId>
       <version>2.0.5.GA</version>
     </dependency>
     
     <dependency>
       <groupId>org.jboss.logging</groupId>
       <artifactId>jboss-logging-log4j</artifactId>
       <version>2.0.5.GA</version>
     </dependency>
     
     <dependency>
       <groupId>org.jboss</groupId>
       <artifactId>jboss-common-core</artifactId>
       <version>2.2.5.GA</version>
     </dependency>

     <dependency>
        <groupId>jboss.profiler.jvmti</groupId>
        <artifactId>jboss-profiler-jvmti</artifactId>
        <version>1.0.0.CR5</version>
     </dependency>

     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>3.8.1</version>
     </dependency>
     
     <dependency>
       <groupId>apache-log4j</groupId>
       <artifactId>log4j</artifactId>
       <version>1.2.14</version>
     </dependency>
     
     <dependency>
       <groupId>org.jboss.jbossas</groupId>
       <artifactId>jboss-server-manager</artifactId>
       <version>0.1.0.GA</version>
     </dependency>

   </dependencies>
   
</project>