jetty.project/jetty-osgi/jetty-osgi-boot/jettyhome/etc/jetty.xml

115 lines
6.5 KiB
XML
Raw Normal View History

<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "https://www.eclipse.org/jetty/configure_9_3.dtd">
<!-- =============================================================== -->
<!-- Configure the Jetty Server -->
<!-- -->
<!-- Documentation of this file format can be found at: -->
2017-05-18 12:12:32 -04:00
<!-- https://www.eclipse.org/jetty/documentation/current/ -->
<!-- =============================================================== -->
<Configure id="Server" class="org.eclipse.jetty.server.Server">
<!-- =========================================================== -->
<!-- Server Thread Pool -->
<!-- =========================================================== -->
<Get name="ThreadPool">
<Set name="minThreads">10</Set>
<Set name="maxThreads">200</Set>
</Get>
<!-- =========================================================== -->
<!-- Set handler Collection Structure -->
<!-- =========================================================== -->
<Set name="handler">
<New id="Handlers" class="org.eclipse.jetty.server.handler.HandlerList">
<Set name="handlers">
<Array type="org.eclipse.jetty.server.Handler">
<Item>
<New id="Contexts" class="org.eclipse.jetty.server.handler.ContextHandlerCollection"/>
</Item>
<Item>
<New id="DefaultHandler" class="org.eclipse.jetty.server.handler.DefaultHandler"/>
</Item>
</Array>
</Set>
</New>
</Set>
<!--
<New id="httpConfig" class="org.eclipse.jetty.server.HttpConfiguration">
<Set name="secureScheme">https</Set>
<Set name="securePort"><Property name="jetty.httpConfig.securePort" default="8443" /></Set>
<Set name="outputBufferSize">32768</Set>
<Set name="requestHeaderSize">8192</Set>
<Set name="responseHeaderSize">8192</Set>
<Set name="sendServerVersion">true</Set>
<Set name="sendDateHeader">false</Set>
<Set name="headerCacheSize">1024</Set>
</New>
-->
<New id="httpConfig" class="org.eclipse.jetty.server.HttpConfiguration">
<Set name="secureScheme"><Property name="jetty.httpConfig.secureScheme" default="https" /></Set>
<Set name="securePort"><Property name="jetty.httpConfig.securePort" default="8443" /></Set>
<Set name="outputBufferSize"><Property name="jetty.httpConfig.outputBufferSize" default="32768" /></Set>
<Set name="outputAggregationSize"><Property name="jetty.httpConfig.outputAggregationSize" default="8192" /></Set>
<Set name="requestHeaderSize"><Property name="jetty.httpConfig.requestHeaderSize" default="8192" /></Set>
<Set name="responseHeaderSize"><Property name="jetty.httpConfig.responseHeaderSize" default="8192" /></Set>
<Set name="sendServerVersion"><Property name="jetty.httpConfig.sendServerVersion" default="true" /></Set>
<Set name="sendDateHeader"><Property name="jetty.httpConfig.sendDateHeader" default="false" /></Set>
<Set name="headerCacheSize"><Property name="jetty.httpConfig.headerCacheSize" default="1024" /></Set>
<Set name="delayDispatchUntilContent"><Property name="jetty.httpConfig.delayDispatchUntilContent" default="true"/></Set>
<Set name="maxErrorDispatches"><Property name="jetty.httpConfig.maxErrorDispatches" default="10"/></Set>
<Set name="persistentConnectionsEnabled"><Property name="jetty.httpConfig.persistentConnectionsEnabled" default="true"/></Set>
<Set name="requestCookieCompliance"><Call class="org.eclipse.jetty.http.CookieCompliance" name="valueOf"><Arg><Property name="jetty.httpConfig.requestCookieCompliance" default="RFC6265"/></Arg></Call></Set>
<Set name="responseCookieCompliance"><Call class="org.eclipse.jetty.http.CookieCompliance" name="valueOf"><Arg><Property name="jetty.httpConfig.responseCookieCompliance" default="RFC6265"/></Arg></Call></Set>
</New>
<!-- =========================================================== -->
<!-- extra options -->
<!-- =========================================================== -->
<Set name="stopAtShutdown"><Property name="jetty.server.stopAtShutdown" default="true"/></Set>
<Set name="stopTimeout"><Property name="jetty.server.stopTimeout" default="5000"/></Set>
<Set name="dumpAfterStart"><Property name="jetty.server.dumpAfterStart" default="false"/></Set>
<Set name="dumpBeforeStop"><Property name="jetty.server.dumpBeforeStop" default="false"/></Set>
Squashed commit of the following: (#528) commit 4bf6b7c9519e168444b30c1b3b310bc94f8fc556 Merge: a50e882 301fc12 Author: Greg Wilkins <gregw@webtide.com> Date: Wed Apr 27 12:12:08 2016 +1000 Merge branch 'master' into jetty-9.4.x-Feature commit a50e8825a3c1f0fb9a78ae8fb5b0142f1e27289b Author: Greg Wilkins <gregw@webtide.com> Date: Sat Apr 23 09:38:00 2016 +1000 work in progress commit 4e286266c04d266489187bb020b65ddff6992cf1 Merge: 5ae7da0 f550fcd Author: Greg Wilkins <gregw@webtide.com> Date: Thu Apr 21 16:34:12 2016 +1000 Merge branch 'master' into jetty-9.4.x-Feature commit 5ae7da049bf8ae7067be52cb083219f4542f37d7 Author: Greg Wilkins <gregw@webtide.com> Date: Thu Apr 21 12:12:24 2016 +1000 Work in progress on Features commit adfc430ad4cfc0a5785d440db535f73570978717 Author: Jan Bartel <janb@webtide.com> Date: Wed Apr 20 22:05:55 2016 +1000 Refactor Configurations.isEnabledByDefault, enable all configurations by default. commit 70cca692cc283a2153b974e00fe589a63cef89cb Author: Jan Bartel <janb@webtide.com> Date: Wed Apr 20 17:32:22 2016 +1000 Fix features for jsp with osgi commit 22d2b251e93e776d90160c67c0922902de740cf3 Merge: 571d503 2c4cdbe Author: Greg Wilkins <gregw@webtide.com> Date: Thu Apr 14 16:19:43 2016 +1000 Merge branch 'master' into jetty-9.4.x-Feature commit 571d50315e83e5c1d78663fbe9347490cc3921df Author: Greg Wilkins <gregw@webtide.com> Date: Wed Apr 13 15:36:36 2016 +1000 code comment commit d9b229f298de6a54fa0b46f51c708230981b4f83 Author: Greg Wilkins <gregw@webtide.com> Date: Sat Apr 9 21:24:22 2016 +1000 fixed quickstart validation commit 154d58bf622d48c94ab7c60fd4eda4d031416d4e Merge: 8e54aad ef92338 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Apr 8 18:25:17 2016 +1000 Merge branch 'master' into jetty-9.4.x-Feature commit 8e54aad414ed470b8b9f51175649e0c159530ab0 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Apr 8 18:21:30 2016 +1000 general cleanup of Configuration and ClasspathPattern usage commit 65f8e5dbd0d17fe9c22c801d19290c50bde8cfa1 Merge: ea1deda 2fb9b55 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Apr 8 09:15:28 2016 +1000 Merge branch 'master' into jetty-9.4.x-Feature commit ea1deda4f9d4c521ca86d45cabc042b24e36e685 Merge: cfe9c83 f92588c Author: Greg Wilkins <gregw@webtide.com> Date: Tue Mar 15 18:21:56 2016 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit cfe9c836910f2e86c24ee0e60a2f1070e1e3e9f0 Author: Greg Wilkins <gregw@webtide.com> Date: Tue Mar 15 17:57:23 2016 +1100 work in progress commit 725be8c051bca65feacfce60286fef0f14973816 Author: Greg Wilkins <gregw@webtide.com> Date: Tue Mar 15 10:11:49 2016 +1100 work in progress commit 61d2c07534350d701276e803b9913a851a1c3be7 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Mar 11 14:01:00 2016 +1100 progress on OSGi commit a977536c7dd979c1262b3b5d57d4c877c2d64d9b Author: Greg Wilkins <gregw@webtide.com> Date: Fri Mar 11 12:52:33 2016 +1100 Fixed plugin commit f08b84ba0e98de50114c8e9bf4a065db6f47b78a Merge: f19bd2c 8a24798 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Mar 11 12:21:55 2016 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit f19bd2c65ae947905faa731e511cc103831858a4 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Mar 11 12:21:06 2016 +1100 work in progress... all but OSGi commit 2f15c3e4f9a107ce531f660ad40250dffeb4fcb6 Merge: 36b5687 7b1486b Author: Greg Wilkins <gregw@webtide.com> Date: Thu Mar 10 16:52:43 2016 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 36b56873297e299beb3df7b8a64da7d4e9a72195 Merge: 13d914a e7081d7 Author: Greg Wilkins <gregw@webtide.com> Date: Thu Mar 10 07:20:05 2016 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 13d914aa7c8ba87eb7a8176de52da59f5f756228 Author: Greg Wilkins <gregw@webtide.com> Date: Thu Mar 10 04:41:30 2016 +1100 Work in progress on Features Moved jar discovery to META-INF commit d41bd264ad33c45c2d4657e8a4e1b39e90399257 Author: Greg Wilkins <gregw@webtide.com> Date: Sat Mar 5 17:48:15 2016 +0100 Work in progress towards new quickstart arch commit c5c23698c455a854e241e3f9be975145188dd872 Merge: fd34007 692aae0 Author: Greg Wilkins <gregw@webtide.com> Date: Sat Mar 5 11:29:18 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit fd34007c3d5f92b63ec38afd92d724ecb4a8e71d Author: Greg Wilkins <gregw@webtide.com> Date: Sat Mar 5 11:04:35 2016 +0100 Work in progress on Features for QuickStart commit c5f0c80cd2bd4f3977b9c91f5b046cfef2300b2b Merge: 0e6d886 b61c5ff Author: Greg Wilkins <gregw@webtide.com> Date: Fri Mar 4 16:05:23 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit 0e6d886b01c8a4f911bf47b13a2edc6617d38bf2 Merge: d150405 2b67e04 Author: Greg Wilkins <gregw@webtide.com> Date: Wed Mar 2 17:32:36 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit d1504055deb1df6f759d6aece8656c7492173964 Merge: 22a6cd0 3300d54 Author: Greg Wilkins <gregw@webtide.com> Date: Wed Mar 2 15:21:20 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit 22a6cd05b7135ef26205a5781783c58ba65e8927 Author: Greg Wilkins <gregw@webtide.com> Date: Mon Feb 29 20:53:17 2016 +0100 Features work in progress convert more server/system classes to Configurations commit 037e04bfe54a54764a9d51a769cab5a95e863fa6 Merge: add9876 bb08b65 Author: Greg Wilkins <gregw@webtide.com> Date: Mon Feb 29 17:11:04 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit add9876f830d9524a3019979e122dc7a9b96a857 Merge: 5263f15 eb5e25c Author: Greg Wilkins <gregw@webtide.com> Date: Thu Feb 25 10:11:08 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit 5263f15acdf66a488c622e4535cbfa17fe9d97e8 Merge: 89803ae 21fdaf5 Author: Greg Wilkins <gregw@webtide.com> Date: Tue Feb 23 14:35:31 2016 +0100 Merge remote-tracking branch 'origin/master' into jetty-9.4.x-Feature commit 89803aec959d8f0eea8eef59b03e56a0b2684bf0 Merge: 5fed7c7 779317d Author: Greg Wilkins <gregw@webtide.com> Date: Tue Feb 16 16:09:38 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit 5fed7c713f549175a3641659903dddba9f75760a Author: Greg Wilkins <gregw@webtide.com> Date: Tue Feb 16 11:21:13 2016 +0100 fixed merge commit ec22a1ba0bc1bfccb1deab08af8ca575040feae7 Merge: 4c8257d d0541e5 Author: Greg Wilkins <gregw@webtide.com> Date: Tue Feb 16 10:53:16 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit 4c8257d23b36a9a3ecab4ca342cf453edeffa672 Author: Greg Wilkins <gregw@webtide.com> Date: Thu Dec 17 09:34:28 2015 +1100 Do not default quickstart commit 57ce87770af0774c97304996b5b6c37673e9bc18 Merge: 14bde1f 96e4d72 Author: Greg Wilkins <gregw@webtide.com> Date: Wed Dec 16 17:16:14 2015 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 14bde1f69691f979fdb3c31f6b7841208fed0157 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Dec 4 16:26:58 2015 +1100 work in progress on Configurations as services commit 46ce2aef3abe68bbf6816874904c76506ccc848f Merge: 9e82fa0 ae9dc79 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Dec 4 10:11:09 2015 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 9e82fa0a22166b75aa2012ae9e9f64ca8d0a2259 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Dec 4 08:52:37 2015 +1100 work in progress to Configurations as ServiceLoader commit 6e11f22de469d7ae444e13912603a5a1ba0d7137 Merge: 120e330 5afa348 Author: Greg Wilkins <gregw@webtide.com> Date: Thu Dec 3 18:16:14 2015 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 120e33034f0cd3e5f254e36025badd98cc9ae2ab Merge: 6c5b95d 384caf0 Author: Greg Wilkins <gregw@webtide.com> Date: Thu Dec 3 14:20:52 2015 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 6c5b95d6b8abd17ae985d41486b7139c972cd4cc Merge: 722eb60 5e40bf2 Author: Greg Wilkins <gregw@webtide.com> Date: Wed Dec 2 11:16:37 2015 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 722eb60ce5029958f58ede16aba134fb3db6c2d4 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Nov 27 13:58:16 2015 +1100 Configurations can add server/system classes commit 2972354db76b03f9d86e77942db86d079ba1151e Author: Greg Wilkins <gregw@webtide.com> Date: Fri Nov 27 11:47:03 2015 +1100 Self ordering WebApp Configurations Signed-off-by: Greg Wilkins <gregw@webtide.com>
2016-05-02 03:55:54 -04:00
<Call class="org.eclipse.jetty.webapp.Configurations" name="setServerDefault">
<Arg><Ref refid="Server"/></Arg>
<Call name="add">
<Arg name="configClass">
<Array type="String">
<Item>org.eclipse.jetty.webapp.FragmentConfiguration</Item>
<Item>org.eclipse.jetty.webapp.JettyWebXmlConfiguration</Item>
<Item>org.eclipse.jetty.webapp.WebXmlConfiguration</Item>
<Item>org.eclipse.jetty.webapp.WebAppConfiguration</Item>
<Item>org.eclipse.jetty.webapp.ServletsConfiguration</Item>
<Item>org.eclipse.jetty.webapp.JspConfiguration</Item>
<Item>org.eclipse.jetty.webapp.JaasConfiguration</Item>
<Item>org.eclipse.jetty.webapp.JndiConfiguration</Item>
<Item>org.eclipse.jetty.plus.webapp.PlusConfiguration</Item>
<Item>org.eclipse.jetty.plus.webapp.EnvConfiguration</Item>
<Item>org.eclipse.jetty.webapp.JmxConfiguration</Item>
<Item>org.eclipse.jetty.osgi.annotations.AnnotationConfiguration</Item>
<Item>org.eclipse.jetty.websocket.server.config.JettyWebSocketConfiguration</Item>
Issue #3872 Javax Websocket Packaging (#3873) * Issue #3872 Javax Websocket Packaging Moved JaxaxWebSocketConfiguration and SCI to config package. Limited classpath exposure in JavaxConfiguration (more needed) Updated tests with work around for those that needs more classes exposed Signed-off-by: Greg Wilkins <gregw@webtide.com> * Issue #3872 Javax Websocket Packaging Moved all remaining classes from org.eclipse.jetty.websocket.javax.server to org.eclipse.jetty.websocket.javax.server.internal. This works when running on the classpath, but the tests fail when running on the modulepath (eg in commandline mvn run). The issue appears to be that the tests don't load test classes from WEB-INF/lib or WEB-INF/classes. Instead the test classes were themselves in org.eclipse.jetty.websocket.javax.server, which is no longer exported from module-info.java. The hacked "fix" for this has been to create a org.eclipse.jetty.websocket.javax.server.tests package which is exported and to move all the tests to that. A better fix is needed. Signed-off-by: Greg Wilkins <gregw@webtide.com> * Issue #3872 Javax Websocket Packaging improve comments tighten exposed classes more Signed-off-by: Greg Wilkins <gregw@webtide.com> * Issue #3872 - fixing tests Signed-off-by: Lachlan Roberts <lachlan@webtide.com> * Issue #3872 - move ContainerDefaultConfigurator to config package Signed-off-by: Lachlan Roberts <lachlan@webtide.com> * Issue #3873 - fix javax websocket test classloader issues move websocket endpoints for test webapps to com.acme.websocket package Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
2019-08-27 20:03:46 -04:00
<Item>org.eclipse.jetty.websocket.javax.server.config.JavaxWebSocketConfiguration</Item>
<Item>org.eclipse.jetty.osgi.boot.OSGiWebInfConfiguration</Item>
<Item>org.eclipse.jetty.osgi.boot.OSGiMetaInfConfiguration</Item>
</Array>
</Arg>
</Call>
</Call>
Squashed commit of the following: (#528) commit 4bf6b7c9519e168444b30c1b3b310bc94f8fc556 Merge: a50e882 301fc12 Author: Greg Wilkins <gregw@webtide.com> Date: Wed Apr 27 12:12:08 2016 +1000 Merge branch 'master' into jetty-9.4.x-Feature commit a50e8825a3c1f0fb9a78ae8fb5b0142f1e27289b Author: Greg Wilkins <gregw@webtide.com> Date: Sat Apr 23 09:38:00 2016 +1000 work in progress commit 4e286266c04d266489187bb020b65ddff6992cf1 Merge: 5ae7da0 f550fcd Author: Greg Wilkins <gregw@webtide.com> Date: Thu Apr 21 16:34:12 2016 +1000 Merge branch 'master' into jetty-9.4.x-Feature commit 5ae7da049bf8ae7067be52cb083219f4542f37d7 Author: Greg Wilkins <gregw@webtide.com> Date: Thu Apr 21 12:12:24 2016 +1000 Work in progress on Features commit adfc430ad4cfc0a5785d440db535f73570978717 Author: Jan Bartel <janb@webtide.com> Date: Wed Apr 20 22:05:55 2016 +1000 Refactor Configurations.isEnabledByDefault, enable all configurations by default. commit 70cca692cc283a2153b974e00fe589a63cef89cb Author: Jan Bartel <janb@webtide.com> Date: Wed Apr 20 17:32:22 2016 +1000 Fix features for jsp with osgi commit 22d2b251e93e776d90160c67c0922902de740cf3 Merge: 571d503 2c4cdbe Author: Greg Wilkins <gregw@webtide.com> Date: Thu Apr 14 16:19:43 2016 +1000 Merge branch 'master' into jetty-9.4.x-Feature commit 571d50315e83e5c1d78663fbe9347490cc3921df Author: Greg Wilkins <gregw@webtide.com> Date: Wed Apr 13 15:36:36 2016 +1000 code comment commit d9b229f298de6a54fa0b46f51c708230981b4f83 Author: Greg Wilkins <gregw@webtide.com> Date: Sat Apr 9 21:24:22 2016 +1000 fixed quickstart validation commit 154d58bf622d48c94ab7c60fd4eda4d031416d4e Merge: 8e54aad ef92338 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Apr 8 18:25:17 2016 +1000 Merge branch 'master' into jetty-9.4.x-Feature commit 8e54aad414ed470b8b9f51175649e0c159530ab0 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Apr 8 18:21:30 2016 +1000 general cleanup of Configuration and ClasspathPattern usage commit 65f8e5dbd0d17fe9c22c801d19290c50bde8cfa1 Merge: ea1deda 2fb9b55 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Apr 8 09:15:28 2016 +1000 Merge branch 'master' into jetty-9.4.x-Feature commit ea1deda4f9d4c521ca86d45cabc042b24e36e685 Merge: cfe9c83 f92588c Author: Greg Wilkins <gregw@webtide.com> Date: Tue Mar 15 18:21:56 2016 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit cfe9c836910f2e86c24ee0e60a2f1070e1e3e9f0 Author: Greg Wilkins <gregw@webtide.com> Date: Tue Mar 15 17:57:23 2016 +1100 work in progress commit 725be8c051bca65feacfce60286fef0f14973816 Author: Greg Wilkins <gregw@webtide.com> Date: Tue Mar 15 10:11:49 2016 +1100 work in progress commit 61d2c07534350d701276e803b9913a851a1c3be7 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Mar 11 14:01:00 2016 +1100 progress on OSGi commit a977536c7dd979c1262b3b5d57d4c877c2d64d9b Author: Greg Wilkins <gregw@webtide.com> Date: Fri Mar 11 12:52:33 2016 +1100 Fixed plugin commit f08b84ba0e98de50114c8e9bf4a065db6f47b78a Merge: f19bd2c 8a24798 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Mar 11 12:21:55 2016 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit f19bd2c65ae947905faa731e511cc103831858a4 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Mar 11 12:21:06 2016 +1100 work in progress... all but OSGi commit 2f15c3e4f9a107ce531f660ad40250dffeb4fcb6 Merge: 36b5687 7b1486b Author: Greg Wilkins <gregw@webtide.com> Date: Thu Mar 10 16:52:43 2016 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 36b56873297e299beb3df7b8a64da7d4e9a72195 Merge: 13d914a e7081d7 Author: Greg Wilkins <gregw@webtide.com> Date: Thu Mar 10 07:20:05 2016 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 13d914aa7c8ba87eb7a8176de52da59f5f756228 Author: Greg Wilkins <gregw@webtide.com> Date: Thu Mar 10 04:41:30 2016 +1100 Work in progress on Features Moved jar discovery to META-INF commit d41bd264ad33c45c2d4657e8a4e1b39e90399257 Author: Greg Wilkins <gregw@webtide.com> Date: Sat Mar 5 17:48:15 2016 +0100 Work in progress towards new quickstart arch commit c5c23698c455a854e241e3f9be975145188dd872 Merge: fd34007 692aae0 Author: Greg Wilkins <gregw@webtide.com> Date: Sat Mar 5 11:29:18 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit fd34007c3d5f92b63ec38afd92d724ecb4a8e71d Author: Greg Wilkins <gregw@webtide.com> Date: Sat Mar 5 11:04:35 2016 +0100 Work in progress on Features for QuickStart commit c5f0c80cd2bd4f3977b9c91f5b046cfef2300b2b Merge: 0e6d886 b61c5ff Author: Greg Wilkins <gregw@webtide.com> Date: Fri Mar 4 16:05:23 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit 0e6d886b01c8a4f911bf47b13a2edc6617d38bf2 Merge: d150405 2b67e04 Author: Greg Wilkins <gregw@webtide.com> Date: Wed Mar 2 17:32:36 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit d1504055deb1df6f759d6aece8656c7492173964 Merge: 22a6cd0 3300d54 Author: Greg Wilkins <gregw@webtide.com> Date: Wed Mar 2 15:21:20 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit 22a6cd05b7135ef26205a5781783c58ba65e8927 Author: Greg Wilkins <gregw@webtide.com> Date: Mon Feb 29 20:53:17 2016 +0100 Features work in progress convert more server/system classes to Configurations commit 037e04bfe54a54764a9d51a769cab5a95e863fa6 Merge: add9876 bb08b65 Author: Greg Wilkins <gregw@webtide.com> Date: Mon Feb 29 17:11:04 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit add9876f830d9524a3019979e122dc7a9b96a857 Merge: 5263f15 eb5e25c Author: Greg Wilkins <gregw@webtide.com> Date: Thu Feb 25 10:11:08 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit 5263f15acdf66a488c622e4535cbfa17fe9d97e8 Merge: 89803ae 21fdaf5 Author: Greg Wilkins <gregw@webtide.com> Date: Tue Feb 23 14:35:31 2016 +0100 Merge remote-tracking branch 'origin/master' into jetty-9.4.x-Feature commit 89803aec959d8f0eea8eef59b03e56a0b2684bf0 Merge: 5fed7c7 779317d Author: Greg Wilkins <gregw@webtide.com> Date: Tue Feb 16 16:09:38 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit 5fed7c713f549175a3641659903dddba9f75760a Author: Greg Wilkins <gregw@webtide.com> Date: Tue Feb 16 11:21:13 2016 +0100 fixed merge commit ec22a1ba0bc1bfccb1deab08af8ca575040feae7 Merge: 4c8257d d0541e5 Author: Greg Wilkins <gregw@webtide.com> Date: Tue Feb 16 10:53:16 2016 +0100 Merge branch 'master' into jetty-9.4.x-Feature commit 4c8257d23b36a9a3ecab4ca342cf453edeffa672 Author: Greg Wilkins <gregw@webtide.com> Date: Thu Dec 17 09:34:28 2015 +1100 Do not default quickstart commit 57ce87770af0774c97304996b5b6c37673e9bc18 Merge: 14bde1f 96e4d72 Author: Greg Wilkins <gregw@webtide.com> Date: Wed Dec 16 17:16:14 2015 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 14bde1f69691f979fdb3c31f6b7841208fed0157 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Dec 4 16:26:58 2015 +1100 work in progress on Configurations as services commit 46ce2aef3abe68bbf6816874904c76506ccc848f Merge: 9e82fa0 ae9dc79 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Dec 4 10:11:09 2015 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 9e82fa0a22166b75aa2012ae9e9f64ca8d0a2259 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Dec 4 08:52:37 2015 +1100 work in progress to Configurations as ServiceLoader commit 6e11f22de469d7ae444e13912603a5a1ba0d7137 Merge: 120e330 5afa348 Author: Greg Wilkins <gregw@webtide.com> Date: Thu Dec 3 18:16:14 2015 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 120e33034f0cd3e5f254e36025badd98cc9ae2ab Merge: 6c5b95d 384caf0 Author: Greg Wilkins <gregw@webtide.com> Date: Thu Dec 3 14:20:52 2015 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 6c5b95d6b8abd17ae985d41486b7139c972cd4cc Merge: 722eb60 5e40bf2 Author: Greg Wilkins <gregw@webtide.com> Date: Wed Dec 2 11:16:37 2015 +1100 Merge branch 'master' into jetty-9.4.x-Feature commit 722eb60ce5029958f58ede16aba134fb3db6c2d4 Author: Greg Wilkins <gregw@webtide.com> Date: Fri Nov 27 13:58:16 2015 +1100 Configurations can add server/system classes commit 2972354db76b03f9d86e77942db86d079ba1151e Author: Greg Wilkins <gregw@webtide.com> Date: Fri Nov 27 11:47:03 2015 +1100 Self ordering WebApp Configurations Signed-off-by: Greg Wilkins <gregw@webtide.com>
2016-05-02 03:55:54 -04:00
<Call class="java.lang.System" name="setProperty">
<Arg>java.naming.factory.initial</Arg>
<Arg><Property name="java.naming.factory.initial" default="org.eclipse.jetty.jndi.InitialContextFactory"/></Arg>
</Call>
<Call class="java.lang.System" name="setProperty">
<Arg>java.naming.factory.url.pkgs</Arg>
<Arg><Property name="java.naming.factory.url.pkgs" default="org.eclipse.jetty.jndi"/></Arg>
</Call>
</Configure>