pax-web-itest-jsp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ops4j.pax.web.itest</groupId> <artifactId>pax-web-itest-jsp</artifactId> <version>11.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2021 OPS4J. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.ops4j.pax.web</groupId> <artifactId>pax-web-itest</artifactId> <version>11.0.0</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.ops4j.pax.web.itest</groupId> <artifactId>pax-web-itest-jsp</artifactId> <name>OPS4J Pax Web - JSP Integration tests</name> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <includes> <include>**/*IntegrationTest.java</include> </includes> <systemPropertyVariables> <!-- to configure pax-exam with pax.exam.system=default which gives us more control over installed bundles see: org.ops4j.pax.exam.ConfigurationManager.ConfigurationManager() --> <pax.exam.configuration>file:../pax-web-itest-container/etc/controlled-exam.properties</pax.exam.configuration> <!-- Having only pax-logging-api on classpath, this is the way to make logging less verbose --> <org.ops4j.pax.logging.DefaultServiceLog.level>INFO</org.ops4j.pax.logging.DefaultServiceLog.level> </systemPropertyVariables> <redirectTestOutputToFile>false</redirectTestOutputToFile> <runOrder>alphabetical</runOrder> <!-- be careful to not load pax-logging-log4j1 and pax-logging-api through system class loader. failsafe has to isolate running OSGi framework from these jars - they have to be installed only as bundles --> <classpathDependencyScopeExclude>runtime</classpathDependencyScopeExclude> <forkCount>1</forkCount> <reuseForks>false</reuseForks> <trimStackTrace>false</trimStackTrace> </configuration> <executions> <execution> <id>integration-test</id> <goals> <goal>integration-test</goal> </goals> </execution> <execution> <id>verify</id> <goals> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> <dependencies> <!-- pax-web own artifacts --> <dependency> <groupId>org.ops4j.pax.web</groupId> <artifactId>pax-web-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.ops4j.pax.web</groupId> <artifactId>pax-web-spi</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.ops4j.pax.web</groupId> <artifactId>pax-web-tomcat-common</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.ops4j.pax.web</groupId> <artifactId>pax-web-jsp</artifactId> <scope>test</scope> </dependency> <!-- OPS4J dependencies --> <dependency> <!-- Needed to provide org.apache.juli.logging.LogFactory class for Tomcat --> <groupId>org.ops4j.pax.logging</groupId> <artifactId>pax-logging-api</artifactId> <scope>test</scope> </dependency> <!-- OSGi --> <dependency> <groupId>org.osgi</groupId> <artifactId>osgi.core</artifactId> </dependency> <!-- JakartaEE (the packages not re-exported by pax-web-jsp) --> <dependency> <groupId>jakarta.el</groupId> <artifactId>jakarta.el-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-jsp-api</artifactId> <scope>provided</scope> </dependency> <!-- Spring --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <scope>test</scope> </dependency> <!-- Other --> <dependency> <groupId>org.eclipse.jdt</groupId> <artifactId>ecj</artifactId> <scope>test</scope> </dependency> <!-- Testing --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> </project>