Maven Repository - POM file for Testing jwebunit-core 1.4.1 1.4.1

Summary

Core - API.

The core API of JWebUnit. Define how tests should be written and interface for testing engines..

Declaration

Here is the list of declaration for jwebunit-core. 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-core</artifactId>
   <version>1.4.1</version>
</dependency>

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

Plugin

The following plugins are used in the jwebunit-core-1.4.1.jar

  1. exec-maven-plugin




Packages

The following packages are defined in the jwebunit-core-1.4.1.jar

net.sourceforge.jwebunit.api
net.sourceforge.jwebunit.exception
net.sourceforge.jwebunit.html
net.sourceforge.jwebunit.javascript
net.sourceforge.jwebunit.junit
net.sourceforge.jwebunit.util

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>1.4.1</version>
    <relativePath>../</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>jwebunit-core</artifactId>
  <name>Core - API</name>
  <description>
    The core API of JWebUnit. Define how tests should be written and interface for testing engines.
  </description>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
    </dependency>
    <dependency>
      <groupId>regexp</groupId>
      <artifactId>regexp</artifactId>
      <version>1.3</version>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.4</version>
    </dependency>
  </dependencies>
  <properties>
    <topDirectoryLocation>..</topDirectoryLocation>
  </properties>
  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <executions>
          <execution>
            <phase>generate-sources</phase>
            <goals>
              <goal>java</goal>
            </goals>
            <configuration>
              <sourceRoot>
                ${project.build.directory}/generated-sources/main/java
              </sourceRoot>
            </configuration>
          </execution>
        </executions>
        <configuration>
          <mainClass>
            net.sourceforge.jwebunit.javacc.WebTestCaseGenerator
          </mainClass>
          <arguments>
            <argument>${basedir}/src/main/java</argument>
            <argument>
              ${project.build.directory}/generated-sources/main/java
            </argument>
          </arguments>
          <includePluginDependencies>
            true
          </includePluginDependencies>
          <includeProjectDependencies>
            false
          </includeProjectDependencies>
        </configuration>
        <dependencies>
          <dependency>
            <groupId>net.sourceforge.jwebunit</groupId>
            <artifactId>
              jwebunit-webtestcase-generator
            </artifactId>
            <version>${pom.version}</version>
          </dependency>
        </dependencies>
      </plugin>
    </plugins>
  </build>
</project>