-
-
Notifications
You must be signed in to change notification settings - Fork 489
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Jetty / Update version and fix sending mail
on Java 11. See jetty/jetty.docker#10.
- Loading branch information
1 parent
0a95b58
commit a53fc64
Showing
5 changed files
with
23 additions
and
9 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
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,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd"> | ||
|
||
<Configure class="org.eclipse.jetty.webapp.WebAppContext"> | ||
<Set name="contextPath">/geonetwork</Set> | ||
<Set name="war">../apps/geonetwork</Set> | ||
<Get name="systemClasspathPattern"> | ||
<Call name="add"><Arg>-javax.mail.</Arg></Call> | ||
</Get> | ||
<Get name="serverClasspathPattern"> | ||
<Call name="add"><Arg>javax.mail.</Arg></Call> | ||
</Get> | ||
<Call name="setAttribute"> | ||
<Arg>org.eclipse.jetty.server.webapp.WebInfIncludeJarPattern</Arg> | ||
<Arg>nomatches</Arg> | ||
</Call> | ||
</Configure> |