-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ee8 modules with sources generated from ee9 sources (#8066)
* auto translate some modules from EE9 to EE8 Signed-off-by: Olivier Lamy <[email protected]>
- Loading branch information
Showing
63 changed files
with
1,865 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
<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> | ||
<groupId>org.eclipse.jetty.ee8</groupId> | ||
<artifactId>jetty-ee8</artifactId> | ||
<version>12.0.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>jetty-ee8-annotations</artifactId> | ||
<name>EE8 :: Jetty :: Servlet Annotations</name> | ||
<description>Annotation support for deploying servlets in jetty.</description> | ||
<properties> | ||
<ee9.module>jetty-ee9-annotations</ee9.module> | ||
<bundle-symbolic-name>${project.groupId}.annotations</bundle-symbolic-name> | ||
<spotbugs.onlyAnalyze>org.eclipse.annotations.*</spotbugs.onlyAnalyze> | ||
</properties> | ||
|
||
<build> | ||
<testResources> | ||
<testResource> | ||
<directory>src/test/jar</directory> | ||
<targetPath>jar</targetPath> | ||
</testResource> | ||
</testResources> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<argLine> | ||
@{argLine} ${jetty.surefire.argLine} --add-reads org.eclipse.jetty.ee8.annotations=org.eclipse.jetty.logging --add-opens org.eclipse.jetty.ee8.annotations/org.eclipse.jetty.ee8.annotations.resources=org.eclipse.jetty.ee8.plus | ||
</argLine> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<!-- need to be redefined here as this module have some special need of resources --> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>copy-ee8-test-resources</id> | ||
<phase>generate-test-resources</phase> | ||
<goals> | ||
<goal>copy-resources</goal> | ||
</goals> | ||
<configuration> | ||
<outputDirectory>${project.build.testOutputDirectory}</outputDirectory> | ||
<resources> | ||
<resource> | ||
<directory>${maven.multiModuleProjectDirectory}/jetty-ee9/${ee9.module}/src/test/resources</directory> | ||
</resource> | ||
</resources> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.felix</groupId> | ||
<artifactId>maven-bundle-plugin</artifactId> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<instructions> | ||
<Import-Package>${osgi.slf4j.import.packages},org.objectweb.asm;version="[$(version;==;${asm.version}),$(version;+;${asm.version}))",*</Import-Package> | ||
<Require-Capability>osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)", osgi.serviceloader; filter:="(osgi.serviceloader=jakarta.servlet.ServletContainerInitializer)";resolution:=optional;cardinality:=multiple, osgi.extender; filter:="(osgi.extender=osgi.serviceloader.processor)";resolution:=optional | ||
</Require-Capability> | ||
<Provide-Capability> | ||
osgi.serviceloader; osgi.serviceloader=org.eclipse.jetty.ee8.webapp.Configuration | ||
</Provide-Capability> | ||
</instructions> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.jetty.ee8</groupId> | ||
<artifactId>jetty-ee8-plus</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.jetty.ee8</groupId> | ||
<artifactId>jetty-ee8-webapp</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>jakarta.annotation</groupId> | ||
<artifactId>jakarta.annotation-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.ow2.asm</groupId> | ||
<artifactId>asm</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.ow2.asm</groupId> | ||
<artifactId>asm-commons</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.jetty.toolchain</groupId> | ||
<artifactId>jetty-servlet-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>jakarta.transaction</groupId> | ||
<artifactId>jakarta.transaction-api</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.jetty.toolchain</groupId> | ||
<artifactId>jetty-test-helper</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.jetty</groupId> | ||
<artifactId>jetty-jndi</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.jetty</groupId> | ||
<artifactId>jetty-slf4j-impl</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
15 changes: 15 additions & 0 deletions
15
jetty-ee8/jetty-ee8-annotations/src/main/config/modules/annotations.mod
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# DO NOT EDIT - See: https://www.eclipse.org/jetty/documentation/current/startup-modules.html | ||
|
||
[description] | ||
Enables Annotation scanning for deployed web applications. | ||
|
||
[depend] | ||
plus | ||
|
||
[lib] | ||
lib/jetty-ee8-annotations-${jetty.version}.jar | ||
lib/annotations/*.jar | ||
[jpms] | ||
add-modules:org.objectweb.asm | ||
Binary file added
BIN
+3.06 KB
jetty-ee8/jetty-ee8-annotations/src/test/jar/test-sci-for-container-path.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.19 KB
jetty-ee8/jetty-ee8-annotations/src/test/jar/test-sci-with-ordering.jar
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
<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> | ||
<groupId>org.eclipse.jetty.ee8</groupId> | ||
<artifactId>jetty-ee8</artifactId> | ||
<version>12.0.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>jetty-ee8-jaas</artifactId> | ||
<name>EE8 :: Jetty :: JAAS</name> | ||
<description>Jetty JAAS support</description> | ||
|
||
<properties> | ||
<ee9.module>jetty-ee9-jaas</ee9.module> | ||
<bundle-symbolic-name>${project.groupId}.jaas</bundle-symbolic-name> | ||
<apacheds.version>2.0.0.AM26</apacheds.version> | ||
<apache.directory.api.version>2.1.0</apache.directory.api.version> | ||
<spotbugs.onlyAnalyze>org.eclipse.jetty.jaas.*</spotbugs.onlyAnalyze> | ||
</properties> | ||
|
||
<build> | ||
<plugins> | ||
<!-- always include the sources to be able to prepare the eclipse-jetty-SDK feature | ||
with a snapshot. --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<failIfNoSpecifiedTests>false</failIfNoSpecifiedTests> | ||
<failIfNoTests>false</failIfNoTests> | ||
<argLine>--add-opens java.base/sun.security.x509=ALL-UNNAMED --add-opens java.base/sun.security.util=ALL-UNNAMED</argLine> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.jetty.ee8</groupId> | ||
<artifactId>jetty-ee8-security</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.jetty</groupId> | ||
<artifactId>jetty-slf4j-impl</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.eclipse.jetty.toolchain</groupId> | ||
<artifactId>jetty-test-helper</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.directory.server</groupId> | ||
<artifactId>apacheds-test-framework</artifactId> | ||
<version>${apacheds.version}</version> | ||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
</exclusion> | ||
<!-- exclude additional LDIF schema files to avoid conflicts through | ||
multiple copies --> | ||
<exclusion> | ||
<groupId>org.apache.directory.shared</groupId> | ||
<artifactId>shared-ldap-schema</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.apache.directory.api</groupId> | ||
<artifactId>api-ldap-schema-data</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.directory.server</groupId> | ||
<artifactId>apacheds-server-integ</artifactId> | ||
<version>${apacheds.version}</version> | ||
<scope>test</scope> | ||
<exclusions> | ||
<!-- exclude additional LDIF schema files to avoid conflicts through | ||
multiple copies --> | ||
<exclusion> | ||
<groupId>org.apache.directory.shared</groupId> | ||
<artifactId>shared-ldap-schema</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.apache.directory.api</groupId> | ||
<artifactId>api-ldap-schema-data</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.directory.server</groupId> | ||
<artifactId>apacheds-core-integ</artifactId> | ||
<version>${apacheds.version}</version> | ||
<scope>test</scope> | ||
<exclusions> | ||
<!-- exclude additional LDIF schema files to avoid conflicts through | ||
multiple copies --> | ||
<exclusion> | ||
<groupId>org.apache.directory.shared</groupId> | ||
<artifactId>shared-ldap-schema</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.apache.directory.api</groupId> | ||
<artifactId>api-ldap-schema-data</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.directory.api</groupId> | ||
<artifactId>api-ldap-schema-data</artifactId> | ||
<version>${apache.directory.api.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.directory.api</groupId> | ||
<artifactId>api-ldap-model</artifactId> | ||
<version>${apache.directory.api.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.directory.api</groupId> | ||
<artifactId>api-util</artifactId> | ||
<version>${apache.directory.api.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.directory.api</groupId> | ||
<artifactId>api-asn1-api</artifactId> | ||
<version>${apache.directory.api.version}</version> | ||
</dependency> | ||
<!-- because directory server do not have yet junit5 extensions --> | ||
<dependency> | ||
<groupId>org.junit.vintage</groupId> | ||
<artifactId>junit-vintage-engine</artifactId> | ||
<version>${junit.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
|
||
</project> |
21 changes: 21 additions & 0 deletions
21
jetty-ee8/jetty-ee8-jaas/src/main/config/etc/jetty-jaas.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "https://www.eclipse.org/jetty/configure_10_0.dtd"> | ||
|
||
<Configure id="Server" class="org.eclipse.jetty.server.Server"> | ||
|
||
<!-- ======================================================== --> | ||
<!-- java.security.auth.login.config System property --> | ||
<!-- This is usually a runtime parameter to the jvm, but --> | ||
<!-- it is placed here for convenience. --> | ||
<!-- ======================================================== --> | ||
<Call class="java.lang.System" name="setProperty"> | ||
<Arg>java.security.auth.login.config</Arg> | ||
<Arg> | ||
<Call name="resolvePath" class="org.eclipse.jetty.xml.XmlConfiguration"> | ||
<Arg><Property name="jetty.base"/></Arg> | ||
<Arg><Property name="jetty.jaas.login.conf" default="etc/login.conf" /></Arg> | ||
</Call> | ||
</Arg> | ||
</Call> | ||
|
||
</Configure> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# DO NOT EDIT - See: https://www.eclipse.org/jetty/documentation/current/startup-modules.html | ||
|
||
[description] | ||
Enables JAAS for deployed web applications. | ||
|
||
[depend] | ||
server | ||
|
||
[lib] | ||
lib/jetty-ee8-jaas-${jetty.version}.jar | ||
|
||
[xml] | ||
etc/jetty-jaas.xml | ||
|
||
[ini-template] | ||
## The file location (relative to $jetty.base) for the | ||
## JAAS "java.security.auth.login.config" system property | ||
# jetty.jaas.login.conf=etc/login.conf |
Oops, something went wrong.