jetty-ee8-demo-jetty-webapp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.jetty.ee8.demos</groupId> <artifactId>jetty-ee8-demo-jetty-webapp</artifactId> <version>12.0.21</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>org.eclipse.jetty.ee8.demos</groupId> <artifactId>jetty-ee8-demos</artifactId> <version>12.0.21</version> </parent> <artifactId>jetty-ee8-demo-jetty-webapp</artifactId> <packaging>war</packaging> <name>EE8 :: Demo :: Jetty WebApp</name> <properties> <bundle-symbolic-name>${project.groupId}.webapp</bundle-symbolic-name> <ee9.module>jetty-ee9-demos/jetty-ee9-demo-jetty-webapp</ee9.module> </properties> <dependencies> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.servlet.jsp</groupId> <artifactId>jakarta.servlet.jsp-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.servlet.jsp.jstl</groupId> <artifactId>jakarta.servlet.jsp.jstl-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.ee8</groupId> <artifactId>jetty-ee8-servlets</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.ee8.websocket</groupId> <artifactId>jetty-ee8-websocket-jetty-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.ee8.websocket</groupId> <artifactId>jetty-ee8-websocket-jetty-server</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.toolchain</groupId> <artifactId>jetty-javax-websocket-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.toolchain</groupId> <artifactId>jetty-servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-jmx</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.ee8</groupId> <artifactId>jetty-ee8-webapp</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.ee8.websocket</groupId> <artifactId>jetty-ee8-websocket-javax-server</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.toolchain</groupId> <artifactId>jetty-test-helper</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.jetty.ee8</groupId> <artifactId>jetty-ee8-maven-plugin</artifactId> <version>${project.version}</version> <configuration> <stopPort>8087</stopPort> <stopKey>foo</stopKey> <scan>1</scan> <systemProperties> <fooprop>222</fooprop> </systemProperties> <webApp> <contextPath>/test</contextPath> <tempDirectory>${project.build.directory}/work</tempDirectory> </webApp> <loginServices> <loginService implementation="org.eclipse.jetty.security.HashLoginService"> <name>Test Realm</name> <config implementation="org.eclipse.jetty.maven.MavenResource"> <resourceAsString>${project.build.testOutputDirectory}/test-realm.properties</resourceAsString> </config> </loginService> </loginServices> </configuration> <dependencies> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-client</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty.ee8</groupId> <artifactId>jetty-ee8-servlet</artifactId> <version>${project.version}</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <supportedProjectTypes> <supportedProjectType>war</supportedProjectType> </supportedProjectTypes> <instructions> <Import-Package>javax.servlet.jsp.*;version="[3,4)",org.eclipse.jetty.*;version="[$(version;===;${parsedVersion.osgiVersion}),$(version;==+;${parsedVersion.osgiVersion}))",*</Import-Package> <Export-Package>!org.example*</Export-Package> <!-- the test webapp is configured via a jetty xml file in order to add the security handler. --> <Web-ContextPath>/ee8-demo-jetty</Web-ContextPath> <!-- in fact the '.' must not be there but Felix-BND has a bug: http://www.mail-archive.com/users@felix.apache.org/msg04730.html https://issues.apache.org/jira/browse/FELIX-1571 --> <Bundle-ClassPath>.,WEB-INF/classes</Bundle-ClassPath> <Jetty-Environment>ee8</Jetty-Environment> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>web-bundle-assembly</id> <goals> <goal>single</goal> </goals> <phase>package</phase> <configuration> <descriptors> <descriptor>src/main/assembly/web-bundle.xml</descriptor> </descriptors> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/WebAppTest.java</exclude> <exclude>**/Test*.java</exclude> </excludes> </configuration> <executions> <execution> <id>test</id> <phase>test</phase> </execution> </executions> </plugin> <!-- also make this webapp an osgi bundle --> <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> </build> </project>