Maven Repository - POM file for Testing httpunit 1.6.2 1.6.2

Summary

HttpUnit.

A Java library for the automatic stimulation and testing of web applications..

Declaration

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

<dependency>
   <groupId>httpunit</groupId>
   <artifactId>httpunit</artifactId>
   <version>1.6.2</version>
</dependency>

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

License

Name:MIT License
URL: http://httpunit.sourceforge.net/doc/license.html.





Depends on

The httpunit-1.6.2 has 8 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
Web Frameworkjtidy 4aug2000r7-dev
JTidy is a Java port of HTML Tidy, a HTML syntax checker and pretty printer. Like its non-Java cousin, JTidy can be used as a tool for cleaning up malformed and faulty HTML. In addition, JTidy provides a DOM parser for real-world HTML.
10
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
Networkmail 1.4
The JavaMail API provides a platform-independent and protocol-independent framework to build mail and messaging applications.
461

Plugin

The following plugins are used in the httpunit-1.6.2.jar

  1. maven-compiler-plugin

Packages

The following packages are defined in the httpunit-1.6.2.jar

com.meterware.httpunit
com.meterware.httpunit.cookies
com.meterware.httpunit.javascript
com.meterware.httpunit.parsing
com.meterware.httpunit.scripting
com.meterware.pseudoserver
com.meterware.servletunit




POM File Source

Here is the content of the POM file.

<?xml version="1.0"?><project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>httpunit</groupId>
  <artifactId>httpunit</artifactId>
  <name>HttpUnit</name>
  <version>1.6.2</version>
  <description>A Java library for the automatic stimulation and testing of web applications.</description>
  <url>http://httpunit.sourceforge.net</url>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>http://httpunit.sourceforge.net/doc/license.html</url>
    </license>
  </licenses>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <testSourceDirectory>test</testSourceDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.3</source>
          <target>1.3</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>xerces</groupId>
      <artifactId>xmlParserAPIs</artifactId>
      <version>2.2.1</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>xerces</groupId>
      <artifactId>xercesImpl</artifactId>
      <version>2.6.2</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>nekohtml</groupId>
      <artifactId>nekohtml</artifactId>
      <version>0.9.1</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>rhino</groupId>
      <artifactId>js</artifactId>
      <version>1.5R4.1</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.3</version>
    </dependency>
    <dependency>
      <groupId>jtidy</groupId>
      <artifactId>jtidy</artifactId>
      <version>4aug2000r7-dev</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>javax.mail</groupId>
      <artifactId>mail</artifactId>
      <version>1.4</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>