Maven Repository - POM file for Testing test-support 1.0-alpha-4 1.0-alpha-4

Summary

Test Support.

Set of classes to assist in creation of unit tests.

Declaration

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

<dependency>
   <groupId>com.mtvi.plateng</groupId>
   <artifactId>test-support</artifactId>
   <version>1.0-alpha-4</version>
</dependency>

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

Depends on

The test-support-1.0-alpha-4 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
XPathxmlunit 1.1
XMLUnit compares a control XML document to a test document or the result of a transformation, validates documents, and compares the results of XPath expressions.
52
XPathjaxen 1.1.1
Jaxen is a universal Java XPath engine.
115
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
Httpcommons-httpclient 3.0.1
The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily.
77




Packages

The following packages are defined in the test-support-1.0-alpha-4.jar

com.mtvi.plateng.testing
com.mtvi.plateng.testing.http
com.mtvi.plateng.testing.hudson
com.mtvi.plateng.testing.jndi
com.mtvi.plateng.testing.xml

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>
        <artifactId>master-public-java</artifactId>
        <groupId>com.mtvi</groupId>
        <version>14</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.mtvi.plateng</groupId>
    <artifactId>test-support</artifactId>
    <name>Test Support</name>
    <version>1.0-alpha-4</version>
    <description>Set of classes to assist in creation of unit tests</description>
    <url>https://test-support.dev.java.net/</url>
    <dependencies>
        <dependency>
            <groupId>org.ddsteps</groupId>
            <artifactId>ddsteps-httpserver-mock</artifactId>
            <version>1.0-m1</version>
            <exclusions>
                <exclusion>
                    <artifactId>junit</artifactId>
                    <groupId>junit</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>xmlParserAPIs</artifactId>
                    <groupId>xerces</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>xercesImpl</artifactId>
                    <groupId>xerces</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>xmlunit</groupId>
            <artifactId>xmlunit</artifactId>
            <version>1.1</version>
            <exclusions>
                <exclusion>
                    <artifactId>junit</artifactId>
                    <groupId>junit</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>jdom</groupId>
            <artifactId>jdom</artifactId>
            <version>1.0</version>
            <exclusions>
                <exclusion>
                    <artifactId>xercesImpl</artifactId>
                    <groupId>xerces</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>jaxen</groupId>
            <artifactId>jaxen</artifactId>
            <version>1.1.1</version>
            <exclusions>
                <exclusion>
                    <artifactId>xercesImpl</artifactId>
                    <groupId>xerces</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>xml-apis</artifactId>
                    <groupId>xml-apis</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>xom</artifactId>
                    <groupId>xom</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>mockobjects</groupId>
            <artifactId>mockobjects-core</artifactId>
            <version>0.09</version>
        </dependency>
        <dependency>
            <groupId>mockobjects</groupId>
            <artifactId>mockobjects-jdk1.4-j2ee1.3</artifactId>
            <version>0.09</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
        </dependency>
        <dependency>
            <groupId>commons-httpclient</groupId>
            <artifactId>commons-httpclient</artifactId>
            <version>3.0.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.jvnet.hudson.main</groupId>
          <artifactId>hudson-core</artifactId>
          <version>1.252</version>
          <optional>true</optional>
        </dependency>
    </dependencies>

    <distributionManagement>
        <site>
            <id>java.net</id>
            <url>java-net:/test-support/trunk/www</url>
        </site>
    </distributionManagement>

    <scm>
        <url>https://test-support.dev.java.net/source/browse/test-support/test-support/tags/test-support-1.0-alpha-4</url>
        <developerConnection>scm:svn:https://test-support.dev.java.net/svn/test-support/test-support/tags/test-support-1.0-alpha-4</developerConnection>
        <connection>scm:svn:https://test-support.dev.java.net/svn/test-support/test-support/tags/test-support-1.0-alpha-4</connection>
    </scm>
</project>