runtime-shared-jetty12
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.google.appengine</groupId>
<artifactId>runtime-shared-jetty12</artifactId>
<version>5.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>5.0.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>runtime-shared-jetty12</artifactId>
<name>AppEngine :: runtime-shared Jetty12 EE8</name>
<description>App Engine runtime shared components for Jetty 12 EE8.</description>
<url>https://github.com/GoogleCloudPlatform/appengine-java-standard/</url>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createSourcesJar>true</createSourcesJar>
<artifactSet>
<excludes>
<exclude>org.eclipse.jdt:ecj</exclude>
</excludes>
<includes>
<include>org.eclipse.jetty.toolchain:jetty-schemas</include>
<include>org.eclipse.jetty:jetty-xml</include>
<include>org.mortbay.jasper:apache-jsp</include>
<include>org.mortbay.jasper:apache-el</include>
<include>com.google.appengine:sessiondata</include>
<include>jakarta.servlet:jakarta.servlet-api</include>
<include>javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api</include>
<include>com.google.appengine:runtime-shared</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>org.mortbay.jasper:apache-el</artifact>
<includes>
<include>javax/el/**</include>
</includes>
<excludes>
<exclude>org/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.mortbay.jasper:apache-jsp</artifact>
<includes>
<include>javax/servlet/jsp/**</include>
</includes>
<excludes>
<exclude>org/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.eclipse.jetty:jetty-xml</artifact>
<includes>
<include>**/*.xsd</include>
<include>**/*.dtd</include>
</includes>
</filter>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/services/**</exclude>
<exclude>META-INF/maven/**</exclude>
<exclude>META-INF/web-fragment.xml</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>META-INF/MANIFEST.MF</exclude>
<exclude>LICENSE</exclude>
<exclude>META-INF/LICENSE.txt</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<notimestamp>true</notimestamp>
<show>public</show>
<failOnWarnings>false</failOnWarnings>
<doclint>none</doclint>
<sourcepath>${project.basedir}/../runtime_shared</sourcepath>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<version>2.49.0</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.23.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>byte-buddy</artifactId>
<groupId>net.bytebuddy</groupId>
</exclusion>
<exclusion>
<artifactId>byte-buddy-agent</artifactId>
<groupId>net.bytebuddy</groupId>
</exclusion>
<exclusion>
<artifactId>objenesis</artifactId>
<groupId>org.objenesis</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>