fix issues with the ssl-reload module

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2020-07-10 18:39:19 +10:00
parent f34873419e
commit 80f09e1f71
4 changed files with 15 additions and 1 deletions

View File

@ -344,6 +344,11 @@
<artifactId>jetty-webapp</artifactId>
<version>9.4.31-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-ssl-reload</artifactId>
<version>9.4.31-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>javax-websocket-client-impl</artifactId>

View File

@ -768,6 +768,11 @@
<artifactId>jetty-nosql</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-ssl-reload</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<profiles>

View File

@ -4,7 +4,7 @@
<Call name="addBean">
<Arg>
<New id="sslKeyStoreScanner" class="org.eclipse.jetty.ssl.reload.SslKeyStoreScanner.SslKeyStoreScanner">
<New id="sslKeyStoreScanner" class="org.eclipse.jetty.ssl.reload.SslKeyStoreScanner">
<Arg><Ref refid="sslContextFactory"/></Arg>
<Set name="scanInterval"><Property name="jetty.ssl.reload.scanInterval" default="1"/></Set>
</New>

View File

@ -3,6 +3,10 @@ DO NOT EDIT - See: https://www.eclipse.org/jetty/documentation/current/startup-m
[description]
Enables the SSL keystore to be reloaded after any changes are detected on the file system.
[tags]
connector
ssl
[depend]
ssl