jetty-ee8-demo-jndi-webapp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.jetty.ee8.demos</groupId> <artifactId>jetty-ee8-demo-jndi-webapp</artifactId> <version>12.0.23</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.23</version> </parent> <artifactId>jetty-ee8-demo-jndi-webapp</artifactId> <packaging>war</packaging> <name>EE8 :: Demo :: JNDI WebApp</name> <properties> <bundle-symbolic-name>${project.groupId}.jndi</bundle-symbolic-name> <ee9.module>jetty-ee9-demos/jetty-ee9-demo-jndi-webapp</ee9.module> </properties> <dependencies> <dependency> <groupId>jakarta.transaction</groupId> <artifactId>jakarta.transaction-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.ee8.demos</groupId> <artifactId>jetty-ee8-demo-mock-resources</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.orbit</groupId> <artifactId>javax.mail.glassfish</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.toolchain</groupId> <artifactId>jetty-servlet-api</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.jetty.ee8</groupId> <artifactId>jetty-ee8-maven-plugin</artifactId> <version>${project.version}</version> <configuration> <contextXml>${project.build.directory}/plugin-context.xml</contextXml> <webApp> <war>src/main/webapp</war> <descriptor>${project.build.directory}/webapp/WEB-INF/web.xml</descriptor> <contextPath>/test-jndi</contextPath> </webApp> </configuration> <dependencies> <dependency> <groupId>org.eclipse.jetty.ee8.demos</groupId> <artifactId>jetty-ee8-demo-mock-resources</artifactId> <version>${project.version}</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <goals> <goal>copy-dependencies</goal> </goals> <phase>package</phase> <configuration> <includeArtifactIds>jakarta.transaction-api,ee8-demo-mock-resources</includeArtifactIds> <outputDirectory>${project.build.directory}/lib/jndi</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-templates-resources</id> <goals> <goal>copy-resources</goal> </goals> <phase>generate-resources</phase> <configuration> <mavenFilteringHints> <mavenFilteringHint>ee9-to-ee8</mavenFilteringHint> </mavenFilteringHints> <outputDirectory>${project.build.directory}/templates</outputDirectory> <resources> <resource> <filtering>true</filtering> <directory>${ee9.module.path}/src/main/templates</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>