Maven Repository - POM file for JUnit testng 5.8 5.8

Summary

TestNG.

TestNG is a testing framework inspired from JUnit and NUnit but introducing some new functionalities that make it more powerful and easier to use..

Declaration

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

<dependency>
   <groupId>org.testng</groupId>
   <artifactId>testng</artifactId>
   <version>5.8</version>
</dependency>

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





License

Name:Apache License, Version 2.0
URL: http://apache.org/licenses/LICENSE-2.0.

Depends on

The testng-5.8 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
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
XMLqdox 1.6.1
QDox is a high speed, small footprint parser for extracting class/interface/method definitions from source files complete with JavaDoc @tags. It is designed to be used by active code generators or documentation tools.
13

Depended by

The following table lists the most popular artifacts which are depending on testng-5.8. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Httpasync-http-client 1.8.7
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
27
Logjboss-logmanager 1.2.2.GA
An implementation of java.util.logging.LogManager
15
Httpasync-http-client 1.7.4
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
15
Httpasync-http-client 1.6.4
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
11
Logjboss-logmanager 1.2.0.GA
An implementation of java.util.logging.LogManager
31
Data Structurejoda-money 0.6
Money repesentation and formatting
12
Httpasync-http-client 1.5.0
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
6
Java Libraryjsr303-tck 1.0.6.GA
JSR-303 TCK
19
Httpasync-http-client 1.3.3
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
45
Httpasync-http-client 1.7.1
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
75
Httpasync-http-client 1.7.16
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
31
Httpasync-http-client 1.7.20
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
59
Logjboss-logmanager 1.4.0.Final
An implementation of java.util.logging.LogManager
19
Httpasync-http-client 1.7.11
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
7
JPA Hibernatehibernate-validator 4.1.0.Final
Hibernate's Bean Validation (JSR-303) reference implementation.
98
Httpasync-http-client 1.7.12
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
30
Httpasync-http-client 1.8.3
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
9
JPA Hibernatehibernate-jpamodelgen 1.1.1.Final
Annotation Processor to generate JPA 2 static metamodel classes
5
Httpasync-http-client 1.8.8
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
50
Httpasync-http-client 1.7.5
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses.
29




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">
    <!--
    This POM cannot be used to build TestNG; it should only be used as part of a Maven
    repository upload bundle.
    
    See the guide to creating a bundle here:
    http://maven.apache.org/guides/mini/guide-central-repository-upload.html
    -->
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.testng</groupId>
    <artifactId>testng</artifactId>
    <name>TestNG</name>
    <version>5.8</version>
    <description>TestNG is a testing framework inspired from JUnit and NUnit but introducing some new functionalities that make it more powerful and easier to use.</description>
    <url>http://testng.org</url>
    
    <licenses>
        <license>
            <name>Apache License, Version 2.0</name>
            <url>http://apache.org/licenses/LICENSE-2.0</url>
        </license>
    </licenses>

    <scm>
        <connection>scm:svn:http://testng.googlecode.com/svn/trunk/</connection>
        <developerConnection>scm:svn:http://testng.googlecode.com/svn/trunk/</developerConnection>
        <url>http://testng.googlecode.com/svn/trunk</url>
    </scm>
    
    <dependencies>
        <dependency>
            <groupId>ant</groupId>
            <artifactId>ant</artifactId>
            <version>1.6.5</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
        </dependency>
        <dependency>
            <groupId>qdox</groupId>
            <artifactId>qdox</artifactId>
            <version>1.6.1</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.beanshell</groupId>
            <artifactId>bsh</artifactId>
            <version>2.0b4</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>    
    
</project>