Maven Repository - POM file for JUnit jwebunit-htmlunit-plugin 2.5 2.5

Summary

HtmlUnit Plugin.

HtmlUnit plugin for JWebUnit..

Declaration

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

<dependency>
   <groupId>net.sourceforge.jwebunit</groupId>
   <artifactId>jwebunit-htmlunit-plugin</artifactId>
   <version>2.5</version>
</dependency>

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

Depends on

The jwebunit-htmlunit-plugin-2.5 has 1 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
Testing Mockmockito-all 1.7
Mock objects library for java
31




Depended by

The following table lists the most popular artifacts which are depending on jwebunit-htmlunit-plugin-2.5. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Networklift-webkit_2.9.1-1 2.5
Webkit Library
11
Networklift-webkit_2.10 2.5-RC4
Webkit Library
12
Networklift-webkit_2.9.1-1 2.6-RC1
Webkit Library
12
Networklift-webkit_2.9.1 2.5.1
Webkit Library
26

Plugin

The following plugins are used in the jwebunit-htmlunit-plugin-2.5.jar

  1. maven-surefire-plugin

Packages

The following packages are defined in the jwebunit-htmlunit-plugin-2.5.jar

net.sourceforge.jwebunit.htmlunit

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>jwebunit</artifactId>
        <groupId>net.sourceforge.jwebunit</groupId>
        <version>2.5</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>jwebunit-htmlunit-plugin</artifactId>
    <name>HtmlUnit Plugin</name>
    <description>HtmlUnit plugin for JWebUnit.</description>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <includes>
                        <include>**/*Test.java</include>
                        <include>**/*Tests.java</include>
                    </includes>
                    <excludes>
                        <exclude>**/*AbstractTest.java</exclude>
                        <exclude>**/*AbstractTests.java</exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>1.7</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>net.sourceforge.htmlunit</groupId>
            <artifactId>htmlunit</artifactId>
            <exclusions>
              <exclusion>
                <artifactId>commons-logging</artifactId>
                <groupId>commons-logging</groupId>
              </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>net.sourceforge.jwebunit</groupId>
            <artifactId>jwebunit-core</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>net.sourceforge.jwebunit</groupId>
            <artifactId>jwebunit-commons-tests</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>jcl-over-slf4j</artifactId>
        </dependency>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
        </dependency>
    </dependencies>
    <properties>
        <topDirectoryLocation>..</topDirectoryLocation>
    </properties>
</project>