appengine-local-runtime-shared-jetty9
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-local-runtime-shared-jetty9</artifactId>
<version>3.0.3</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">
<parent>
<artifactId>parent</artifactId>
<groupId>com.google.appengine</groupId>
<version>3.0.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>appengine-local-runtime-shared-jetty9</artifactId>
<name>AppEngine :: appengine-local-runtime-shared Jetty9</name>
<description>App Engine local runtime shared components for Jetty 9.</description>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jspc-maven-plugin</artifactId>
<executions>
<execution>
<id>jspc</id>
<goals>
<goal>jspc</goal>
</goals>
<configuration>
<jspc>
<package>org.apache.jsp.ah.jetty9</package>
</jspc>
<webAppSourceDirectory>${basedir}/src/main/resources/com/google/apphosting/utils/servlet/ah</webAppSourceDirectory>
<mergeFragment>false</mergeFragment>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadeSourcesContent>true</shadeSourcesContent>
<createSourcesJar>true</createSourcesJar>
<relocations>
<relocation>
<pattern>com.google.common</pattern>
<shadedPattern>com.google.appengine.repackaged.com.google.common</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>com.google.appengine:runtime-shared</artifact>
<includes>
<include>com/google/apphosting/api/**</include>
</includes>
</filter>
</filters>
<artifactSet>
<includes>
<include>com.google.appengine:appengine-local-runtime-shared</include>
<include>com.google.appengine:runtime-shared</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-apis-dev</artifactId>
<version>3.0.3</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>mediautil</artifactId>
<groupId>com.google.appengine</groupId>
</exclusion>
<exclusion>
<artifactId>geronimo-javamail_1.4_spec</artifactId>
<groupId>com.google.appengine</groupId>
</exclusion>
<exclusion>
<artifactId>jakarta.servlet-api</artifactId>
<groupId>jakarta.servlet</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jsp</artifactId>
<version>9.4.58.v20250814</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.mortbay.jasper</groupId>
<artifactId>apache-jsp</artifactId>
<version>8.5.70</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>