mirror of
https://github.com/google/nomulus
synced 2026-09-25 17:34:20 +00:00
Upgrade to using Jakarta EE 10 from Java EE 8 by mostly following the upgrade instructions. Only the servlet package is upgrade. Other Jakarta EE components (like the persistence package that Hibernate depends on) need to be upgraded separately. TESTED=deployed and successfully communicated with the pubapi endpoint for web WHOIS. Note that this currently requires packaing the App Engine runtime per instructions here due to GoogleCloudPlatform/appengine-java-standard#98. This PR will only be merged until the fix is deployed to production (https://rapid.corp.google.com/#/release/serverless_runtimes_run_java/java21_20240310_21_0).
37 lines
1.3 KiB
INI
37 lines
1.3 KiB
INI
# ---------------------------------------
|
|
# Module: ee10-deploy
|
|
# This module enables webapp deployment from the `$JETTY_BASE/webapps` directory.
|
|
# ---------------------------------------
|
|
--modules=ee10-deploy
|
|
|
|
## Monitored directory name (relative to $jetty.base)
|
|
# jetty.deploy.monitoredDir=webapps
|
|
|
|
## Defaults Descriptor for all deployed webapps
|
|
# jetty.deploy.defaultsDescriptorPath=${jetty.base}/etc/webdefault-ee10.xml
|
|
|
|
## Monitored directory scan period (seconds)
|
|
jetty.deploy.scanInterval=1
|
|
|
|
## Whether to extract *.war files
|
|
# jetty.deploy.extractWars=true
|
|
|
|
## Whether to give the parent classloader priority
|
|
# jetty.deploy.parentLoaderPriority=true
|
|
|
|
## Comma separated list of configuration classes to set.
|
|
# jetty.deploy.configurationClasses=
|
|
|
|
## Pattern to select jars from the container classloader to be scanned (or null to scan no jars)
|
|
# jetty.deploy.containerScanJarPattern=.*/jakarta.servlet-api-[^/]*\.jar$|.*jakarta.servlet.jsp.jstl-.*\.jar$
|
|
|
|
## Pattern to select jars from the container classloader to be scanned (or null to scan all jars).
|
|
# jetty.deploy.webInfScanJarPattern=
|
|
|
|
## Pattern to exclude discovered ServletContainerInitializers
|
|
# jetty.deploy.servletContainerInitializerExclusionPattern=
|
|
|
|
## Order of discovered ServletContainerInitializers
|
|
# jetty.deploy.servletContainerInitializerOrder=
|
|
|