struts2-jquery-integration-tests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jgeppert.struts2.jquery</groupId> <artifactId>struts2-jquery-integration-tests</artifactId> <version>6.0.1</version> </dependency>
<?xml version="1.0"?> <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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.jgeppert.struts2.jquery</groupId> <artifactId>struts2-jquery</artifactId> <version>6.0.1</version> </parent> <artifactId>struts2-jquery-integration-tests</artifactId> <name>Struts 2 jQuery Integration Tests</name> <packaging>war</packaging> <scm> <url>https://github.com/struts-community-plugins/struts2-jquery/</url> <tag>6.0.1</tag> <connection>scm:git:git@github.com:struts-community-plugins/struts2-jquery.git</connection> <developerConnection>scm:git:git@github.com:struts-community-plugins/struts2-jquery.git</developerConnection> </scm> <properties> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- plugins --> <maven-failsafe-plugin.version>3.5.2</maven-failsafe-plugin.version> <!-- dependencies --> <selenium.version>4.27.0</selenium.version> <htmlunit-driver.version>4.13.0</htmlunit-driver.version> <lombok.version>1.18.36</lombok.version> <guava.version>33.4.0-jre</guava.version> <phantomjsdriver.version>1.5.0</phantomjsdriver.version> <commons-codec.version>1.17.2</commons-codec.version> <commons-io.version>2.18.0</commons-io.version> <xml-apis.version>2.0.2</xml-apis.version> <jakarta.servlet-api.version>6.1.0</jakarta.servlet-api.version> <failsafe.test.tag>HTMLUnit</failsafe.test.tag> <failsafe.webdriver.name>HtmlUnit</failsafe.webdriver.name> </properties> <profiles> <profile> <id>phantomjs</id> <properties> <failsafe.test.tag>PhantomJS</failsafe.test.tag> <failsafe.webdriver.name>PhantomJS</failsafe.webdriver.name> </properties> </profile> <profile> <id>ci-htmlunit</id> <properties> <failsafe.test.tag>CI-HTMLUnit</failsafe.test.tag> <failsafe.webdriver.name>HTMLUnit</failsafe.webdriver.name> </properties> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>${jetty.plugin.version}</version> <configuration> <stopKey>CTRL+C</stopKey> <stopPort>8999</stopPort> <scan>10</scan> </configuration> <executions> <execution> <id>start-jetty</id> <phase>pre-integration-test</phase> <goals> <goal>start</goal> </goals> </execution> <execution> <id>stop-jetty</id> <phase>post-integration-test</phase> <goals> <goal>stop</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven-failsafe-plugin.version}</version> <configuration> <forkCount>2</forkCount> <reuseForks>true</reuseForks> <groups>${failsafe.test.tag}</groups> <systemPropertyVariables> <property> <name>webDriverName</name> <value>${failsafe.webdriver.name}</value> </property> </systemPropertyVariables> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <dependencies> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-convention-plugin</artifactId> </dependency> <dependency> <groupId>com.jgeppert.struts2.jquery</groupId> <artifactId>struts2-jquery-plugin</artifactId> </dependency> <dependency> <groupId>com.jgeppert.struts2.jquery</groupId> <artifactId>struts2-jquery-tree-plugin</artifactId> </dependency> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-json-plugin</artifactId> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>htmlunit-driver</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-convention-plugin</artifactId> <version>${struts2.version}</version> </dependency> <dependency> <groupId>com.jgeppert.struts2.jquery</groupId> <artifactId>struts2-jquery-plugin</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.jgeppert.struts2.jquery</groupId> <artifactId>struts2-jquery-tree-plugin</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-json-plugin</artifactId> <version>${struts2.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>${selenium.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>htmlunit-driver</artifactId> <version>${htmlunit-driver.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.codeborne</groupId> <artifactId>phantomjsdriver</artifactId> <version>${phantomjsdriver.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>${commons-codec.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> <version>${selenium.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> <version>${selenium.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-support</artifactId> <version>${selenium.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>${xml-apis.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <version>${jakarta.servlet-api.version}</version> <scope>provided</scope> </dependency> </dependencies> </dependencyManagement> </project>