jetty-ee8-demos
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.jetty.ee8.demos</groupId> <artifactId>jetty-ee8-demos</artifactId> <version>12.1.0.beta0</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</groupId> <artifactId>jetty-ee8</artifactId> <version>12.1.0.beta0</version> </parent> <groupId>org.eclipse.jetty.ee8.demos</groupId> <artifactId>jetty-ee8-demos</artifactId> <packaging>pom</packaging> <name>EE8 :: Demos</name> <modules> <!-- module>jetty-ee9-demo-embedded</module --> <module>jetty-ee8-demo-jetty-websocket-webapp</module> <module>jetty-ee8-demo-proxy-webapp</module> <!-- <module>jetty-ee9-demo-template</module>--> </modules> <properties> <sonar.skip>true</sonar.skip> <warSourceDirectory>${project.build.directory}/webapp</warSourceDirectory> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <!-- otherwise javadoc jars for these demos will not be created due to top level pom exclusions on "org.example" --> <excludePackageNames>bogus.*</excludePackageNames> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <warSourceDirectory>${warSourceDirectory}</warSourceDirectory> <failOnMissingWebXml>true</failOnMissingWebXml> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>demo-webapp-module</id> <activation> <file> <exists>src/main/config/modules/demo.d</exists> </file> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-ee8-webapp-resources</id> <goals> <goal>copy-resources</goal> </goals> <phase>generate-resources</phase> <configuration> <mavenFilteringHints> <mavenFilteringHint>ee9-to-ee8</mavenFilteringHint> </mavenFilteringHints> <outputDirectory>${project.build.directory}/webapp</outputDirectory> <resources> <resource> <filtering>true</filtering> <directory>${ee9.module.path}/src/main/webapp</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>