[java-idp-plugin-jetty] 02/02: JJETTY-14 Complete move to separate Repository
Rod Widdowson
rdw at steadingsoftware.com
Mon Aug 4 13:19:39 UTC 2025
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch main
in repository java-idp-plugin-jetty.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-jetty.git;a=commit;h=7939fd26590330da065ab1c6f1f6bbe3b658c8db
commit 7939fd26590330da065ab1c6f1f6bbe3b658c8db
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Mon Aug 4 14:17:34 2025 +0100
JJETTY-14 Complete move to separate Repository
https://shibboleth.atlassian.net/browse/JJETTY-13
Remove the old jetty base stuff from the project and teach the module to collect from and
populate to jetty-base-12.
---
.../jetty-base-windows/start.d/idp-system.ini | 17 ------
.../jetty-base-windows/start.d/idp.ini-windows | 23 --------
.../module/jetty/jetty-base/credentials/.gitkeep | 0
.../jetty/jetty-base/etc/idp-backchannel.xml | 62 ---------------------
.../jetty/jetty-base/etc/jetty-requestlog.xml | 30 ----------
.../lib/idp-backchannel/jetty94-dta-ssl-1.0.0.jar | Bin 5503 -> 0 bytes
.../idp/module/jetty/jetty-base/logs/.gitkeep | 0
.../idp/module/jetty/jetty-base/modules/idp.mod | 20 -------
.../module/jetty/jetty-base/resources/logback.xml | 34 -----------
.../idp/module/jetty/jetty-base/start.d/custom.ini | 1 -
.../idp/module/jetty/jetty-base/start.d/idp.ini | 49 ----------------
.../idp/module/jetty/jetty-base/static/index.html | 8 ---
.../idp/module/jetty/jetty-base/tmp/.gitkeep | 0
.../idp/module/jetty/jetty-base/webapps/idp.xml | 12 ----
.../idp/module/jetty/jetty-base/webapps/static.xml | 14 -----
.../shibboleth/idp/module/jetty/module.properties | 46 +++++++--------
16 files changed, 23 insertions(+), 293 deletions(-)
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base-windows/start.d/idp-system.ini b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base-windows/start.d/idp-system.ini
deleted file mode 100644
index cae682b..0000000
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base-windows/start.d/idp-system.ini
+++ /dev/null
@@ -1,17 +0,0 @@
-#
-# Do not edit anything in this file
-#
---module=logging-logback
---module=idp
-
-## Deny SSL renegotiation
-jetty.sslContext.renegotiationAllowed=false
-
-jetty.ssl.port=443
-jetty.http.port=80
-jetty.http.host=localhost
-
-## Route request logging through standard logging API
-etc/jetty-requestlog.xml
-
-jetty.ssl.sniHostCheck=false
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base-windows/start.d/idp.ini-windows b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base-windows/start.d/idp.ini-windows
deleted file mode 100644
index 107c1a8..0000000
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base-windows/start.d/idp.ini-windows
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# Note for Windows users:
-#
-# These are the only three properties which are guaranteed to work between
-# upgrades. You may find more elsewhere and add them here and they may
-# work. For this release.
-#
-# To repeat, only properties listed below are guarantee to work between
-# upgrades.
-#
-
-#
-# KeyStore Management.
-#
-jetty.sslContext.keyStorePath=../credentials/idp-userfacing.p12
-jetty.sslContext.keyStorePassword=changeit
-
-#
-# Keystore type: you should not need to change this
-#
-jetty.sslContext.keyStoreType=PKCS12
-
-jetty.server.default.showContexts=false
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/credentials/.gitkeep b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/credentials/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/etc/idp-backchannel.xml b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/etc/idp-backchannel.xml
deleted file mode 100644
index e242ced..0000000
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/etc/idp-backchannel.xml
+++ /dev/null
@@ -1,62 +0,0 @@
-<?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">
- <!-- ============================================================= -->
- <!-- TLS context factory with optional client auth -->
- <!-- and no container trust (delegate to application) -->
- <!-- for backchannel (SOAP) communication to IdP -->
- <!-- ============================================================= -->
- <New id="shibContextFactory" class="net.shibboleth.utilities.jetty94.DelegateToApplicationSslContextFactory">
- <Set name="KeyStorePath"><Property name="idp.backchannel.keyStorePath" default="credentials/idp-backchannel.p12" /></Set>
- <Set name="KeyStoreType"><Property name="idp.backchannel.keyStoreType" default="PKCS12" /></Set>
- <Set name="KeyStorePassword"><Property name="idp.backchannel.keyStorePassword" default="changeit" /></Set>
- <Set name="EndpointIdentificationAlgorithm"></Set>
- <Set name="renegotiationAllowed">false</Set>
- <Set name="useCipherSuitesOrder">true</Set>
- </New>
-
- <New id="shibHttpConfig" class="org.eclipse.jetty.server.HttpConfiguration">
- <Arg><Ref refid="httpConfig"/></Arg>
- <Call name="addCustomizer">
- <Arg>
- <New class="org.eclipse.jetty.server.SecureRequestCustomizer">
- <Arg type="boolean"><Property name="jetty.ssl.sniHostCheck" default="true"/></Arg>
- </New>
- </Arg>
- </Call>
- </New>
-
- <!-- ============================================================= -->
- <!-- IdP SOAP protocol connector -->
- <!-- ============================================================= -->
- <Call id="shibConnector" name="addConnector">
- <Arg>
- <New class="org.eclipse.jetty.server.ServerConnector">
- <Arg name="server"><Ref refid="Server" /></Arg>
- <Arg name="acceptors" type="int"><Property name="jetty.ssl.acceptors" default="-1"/></Arg>
- <Arg name="selectors" type="int"><Property name="jetty.ssl.selectors" default="-1"/></Arg>
- <Arg name="factories">
- <Array type="org.eclipse.jetty.server.ConnectionFactory">
- <Item>
- <New class="org.eclipse.jetty.server.SslConnectionFactory">
- <Arg name="next">http/1.1</Arg>
- <Arg name="sslContextFactory"><Ref refid="shibContextFactory"/></Arg>
- </New>
- </Item>
- <Item>
- <New class="org.eclipse.jetty.server.HttpConnectionFactory">
- <Arg name="config"><Ref refid="shibHttpConfig"/></Arg>
- </New>
- </Item>
- </Array>
- </Arg>
- <Set name="host"><Property name="jetty.ssl.host" default="0.0.0.0" /></Set>
- <Set name="port"><Property name="idp.backchannel.port" default="8443" /></Set>
- <Set name="idleTimeout"><Property name="jetty.ssl.timeout" default="30000"/></Set>
- <Set name="acceptorPriorityDelta"><Property name="jetty.ssl.acceptorPriorityDelta" default="0"/></Set>
- <Set name="acceptQueueSize"><Property name="jetty.ssl.acceptQueueSize" default="0"/></Set>
- </New>
- </Arg>
- </Call>
-
-</Configure>
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/etc/jetty-requestlog.xml b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/etc/jetty-requestlog.xml
deleted file mode 100644
index 660f7b3..0000000
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/etc/jetty-requestlog.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "https://www.eclipse.org/jetty/configure_10_0.dtd">
-
-<!-- =============================================================== -->
-<!-- Configure the Jetty Request Log -->
-<!-- =============================================================== -->
-<Configure id="Server" class="org.eclipse.jetty.server.Server">
-
- <!-- =========================================================== -->
- <!-- Configure Request Log for Server -->
- <!-- Use RequestLogHandler for a context specific RequestLog -->
- <!-- =========================================================== -->
- <Set name="RequestLog">
- <New id="RequestLog" class="org.eclipse.jetty.server.CustomRequestLog">
- <!-- Writer -->
- <Arg>
- <New class="org.eclipse.jetty.server.Slf4jRequestLogWriter" />
- </Arg>
-
- <!-- Format String -->
- <Arg>
- <Property name="jetty.requestlog.formatString" deprecated="jetty.customrequestlog.formatString">
- <Default>
- <Get class="org.eclipse.jetty.server.CustomRequestLog" name="EXTENDED_NCSA_FORMAT"/>
- </Default>
- </Property>
- </Arg>
- </New>
- </Set>
-</Configure>
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/lib/idp-backchannel/jetty94-dta-ssl-1.0.0.jar b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/lib/idp-backchannel/jetty94-dta-ssl-1.0.0.jar
deleted file mode 100644
index bd7b281..0000000
Binary files a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/lib/idp-backchannel/jetty94-dta-ssl-1.0.0.jar and /dev/null differ
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/logs/.gitkeep b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/logs/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/modules/idp.mod b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/modules/idp.mod
deleted file mode 100644
index 176c52b..0000000
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/modules/idp.mod
+++ /dev/null
@@ -1,20 +0,0 @@
-[description]
-Shibboleth IdP
-
-[depend]
-ee9-annotations
-ee9-deploy
-ext
-ee9-webapp
-http
-https
-ee9-jsp
-ee9-jstl
-ee9-plus
-resources
-server
-ee9-servlets
-ssl
-
-[files]
-tmp/
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/resources/logback.xml b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/resources/logback.xml
deleted file mode 100644
index 1529051..0000000
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/resources/logback.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<configuration scan="true">
- <appender name="jetty" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <File>${idp.home}/logs/jetty.log</File>
- <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
- <FileNamePattern>${idp.home}/logs/jetty-%d{yyyy-MM-dd}.log.gz</FileNamePattern>
- </rollingPolicy>
- <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
- <charset>UTF-8</charset>
- <Pattern>%date{ISO8601} - %level [%logger:%line] - %msg%n</Pattern>
- </encoder>
- </appender>
-
- <appender name="jetty-access" class="ch.qos.logback.core.rolling.RollingFileAppender">
- <file>${idp.home}/logs/access.log</file>
- <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
- <fileNamePattern>${idp.home}/logs/access-%d{yyyy-MM-dd}.log.gz</fileNamePattern>
- </rollingPolicy>
- <encoder>
- <pattern>%msg%n</pattern>
- </encoder>
- </appender>
-
- <root level="INFO">
- <appender-ref ref="jetty" />
- </root>
-
- <logger name="org.eclipse.jetty.server.RequestLog" level="INFO" additivity="false">
- <appender-ref ref="jetty-access" />
- </logger>
-
- <logger name="org.springframework" level="OFF" />
- <logger name="ch.qos.logback" level="WARN" />
-</configuration>
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/start.d/custom.ini b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/start.d/custom.ini
deleted file mode 100644
index 4111f62..0000000
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/start.d/custom.ini
+++ /dev/null
@@ -1 +0,0 @@
-jetty.ssl.sniHostCheck=false
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/start.d/idp.ini b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/start.d/idp.ini
deleted file mode 100644
index 77e065d..0000000
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/start.d/idp.ini
+++ /dev/null
@@ -1,49 +0,0 @@
-# ---------------------------------------
-# Module: idp
-# Shibboleth IdP
-# ---------------------------------------
---module=logging-logback
---module=idp
-
-## Keystore file path (relative to $jetty.base)
-jetty.sslContext.keyStorePath=../credentials/idp-userfacing.p12
-## Truststore file path (relative to $jetty.base)
-jetty.sslContext.trustStorePath=../credentials/idp-userfacing.p12
-
-## Keystore type
-jetty.sslContext.keyStoreType=PKCS12
-## Truststore type and provider
-jetty.sslContext.trustStoreType=PKCS12
-
-## Keystore password
-jetty.sslContext.keyStorePassword=changeit
-## Truststore password
-jetty.sslContext.trustStorePassword=changeit
-## KeyManager password
-jetty.sslContext.keyManagerPassword=changeit
-
-## Deny SSL renegotiation
-jetty.sslContext.renegotiationAllowed=false
-
-## Connector host/address to bind to
-# jetty.ssl.host=0.0.0.0
-
-## Connector port to listen on
-# jetty.ssl.port=443
-
-## Route request logging through standard logging API
-etc/jetty-requestlog.xml
-
-# Allows use of default IdP command line tools.
-jetty.http.host=127.0.0.1
-
-# Default jetty.http.port is 8080
-# jetty.http.port=80
-
-jetty.server.default.showContexts=false
-
-#
-# Uncomment the next line to enable the rewrote module
-# --module=rewrite
-# Documentation at
-# https://jetty.org/docs/jetty/12/operations-guide/modules/standard.html#rewrite
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/static/index.html b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/static/index.html
deleted file mode 100644
index 04b3dc1..0000000
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/static/index.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-
-<html>
-
-<head>
-<title>Add your stuff here</title>
-</head>
-</html>
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/tmp/.gitkeep b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/tmp/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/webapps/idp.xml b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/webapps/idp.xml
deleted file mode 100644
index 6d3866d..0000000
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/webapps/idp.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "https://www.eclipse.org/jetty/configure_10_0.dtd">
-<!-- =============================================================== -->
-<!-- Configure the Shibboleth IdP webapp -->
-<!-- =============================================================== -->
-<Configure class="org.eclipse.jetty.ee9.webapp.WebAppContext">
- <Set name="war"><SystemProperty name="idp.home" default="/opt/shibboleth-idp" />/war/idp.war</Set>
- <Set name="contextPath"><SystemProperty name="idp.context.path" default="/idp" /></Set>
- <Set name="extractWAR">false</Set>
- <Set name="copyWebDir">false</Set>
- <Set name="copyWebInf">true</Set>
-</Configure>
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/webapps/static.xml b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/webapps/static.xml
deleted file mode 100644
index 2fa6c00..0000000
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/jetty-base/webapps/static.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "https://www.eclipse.org/jetty/configure_10_0.dtd">
-<!-- =============================================================== -->
-<!-- Configure static content delivery -->
-<!-- =============================================================== -->
-<Configure class="org.eclipse.jetty.server.handler.ContextHandler">
- <Set name="contextPath">/</Set>
- <Set name="handler">
- <New class="org.eclipse.jetty.server.handler.ResourceHandler">
- <Set name="baseResourceAsString"><SystemProperty name="idp.home"/>/static</Set>
- <Set name="dirAllowed">false</Set>
- </New>
- </Set>
-</Configure>
diff --git a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/module.properties b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/module.properties
index 188786f..cd7a1db 100644
--- a/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/module.properties
+++ b/jetty-impl/src/main/resources/net/shibboleth/idp/module/jetty/module.properties
@@ -9,38 +9,38 @@ jetty.plugin = net.shibboleth.idp.plugin.jetty
jetty.module.name = Jetty Base Module
jetty.module.desc = Configures jetty
-jetty.module.1.src = /net/shibboleth/idp/module/jetty/jetty-base/etc/jetty-requestlog.xml
-jetty.module.1.dest = jetty-base/etc/jetty-requestlog.xml
+jetty.module.1.src = /net/shibboleth/idp/module/jetty/jetty-base-12/etc/jetty-requestlog.xml
+jetty.module.1.dest = jetty-base-12/etc/jetty-requestlog.xml
-jetty.module.2.src = /net/shibboleth/idp/module/jetty/jetty-base/modules/idp.mod
-jetty.module.2.dest = jetty-base/modules/idp.mod
+jetty.module.2.src = /net/shibboleth/idp/module/jetty/jetty-base-12/modules/idp.mod
+jetty.module.2.dest = jetty-base-12/modules/idp.mod
-jetty.module.3.src = /net/shibboleth/idp/module/jetty/jetty-base/resources/logback.xml
-jetty.module.3.dest = jetty-base/resources/logback.xml
+jetty.module.3.src = /net/shibboleth/idp/module/jetty/jetty-base-12/resources/logback.xml
+jetty.module.3.dest = jetty-base-12/resources/logback.xml
-jetty.module.4.src = /net/shibboleth/idp/module/jetty/jetty-base/webapps/idp.xml
-jetty.module.4.dest = jetty-base/webapps/idp.xml
+jetty.module.4.src = /net/shibboleth/idp/module/jetty/jetty-base-12/webapps/idp.xml
+jetty.module.4.dest = jetty-base-12/webapps/idp.xml
-jetty.module.5.src = /net/shibboleth/idp/module/jetty/jetty-base/webapps/static.xml
-jetty.module.5.dest = jetty-base/webapps/static.xml
+jetty.module.5.src = /net/shibboleth/idp/module/jetty/jetty-base-12/webapps/static.xml
+jetty.module.5.dest = jetty-base-12/webapps/static.xml
-jetty.module.6.src = /net/shibboleth/idp/module/jetty/jetty-base/static/index.html
-jetty.module.6.dest = jetty-base/static/index.html
+jetty.module.6.src = /net/shibboleth/idp/module/jetty/jetty-base-12/static/index.html
+jetty.module.6.dest = jetty-base-12/static/index.html
jetty.module.7.src = /net/shibboleth/idp/module/jetty/jetty-cli.jar
-jetty.module.7.dest = bin/net.shibboleth.idp.jetty-base/jetty-cli.jar
+jetty.module.7.dest = bin/net.shibboleth.idp.jetty-base-12/jetty-cli.jar
jetty.module.7.replace = true
# For legacy reasons we separate Windows and non windows start.d
-jetty.module.8.src = /net/shibboleth/idp/module/jetty/jetty-base/start.d/custom.ini
-jetty.module.8.dest = jetty-base/start.d/custom.ini
+jetty.module.8.src = /net/shibboleth/idp/module/jetty/jetty-base-12/start.d/custom.ini
+jetty.module.8.dest = jetty-base-12/start.d/custom.ini
jetty.module.8.nonwindows = true
jetty.module.8.windows = false
jetty.module.8.replace = false
-jetty.module.9.src = /net/shibboleth/idp/module/jetty/jetty-base/start.d/idp.ini
-jetty.module.9.dest = jetty-base/start.d/idp.ini
+jetty.module.9.src = /net/shibboleth/idp/module/jetty/jetty-base-12/start.d/idp.ini
+jetty.module.9.dest = jetty-base-12/start.d/idp.ini
jetty.module.9.nonwindows = true
jetty.module.9.windows = false
jetty.module.9.replace = false
@@ -48,21 +48,21 @@ jetty.module.9.replace = false
#
# On windows let people see what unix is getting but dont make it active
#
-jetty.module.10.src = /net/shibboleth/idp/module/jetty/jetty-base/start.d/idp.ini
-jetty.module.10.dest = jetty-base/start.d/idp.ini-unix
+jetty.module.10.src = /net/shibboleth/idp/module/jetty/jetty-base-12/start.d/idp.ini
+jetty.module.10.dest = jetty-base-12/start.d/idp.ini-unix
jetty.module.10.nonwindows = false
jetty.module.10.windows = true
jetty.module.10.replace = true
-jetty.module.11.src = /net/shibboleth/idp/module/jetty/jetty-base-windows/start.d/idp-system.ini
-jetty.module.11.dest = jetty-base/start.d/idp-system.ini
+jetty.module.11.src = /net/shibboleth/idp/module/jetty/jetty-base-12-windows/start.d/idp-system.ini
+jetty.module.11.dest = jetty-base-12/start.d/idp-system.ini
jetty.module.11.nonwindows = false
jetty.module.11.windows = true
jetty.module.11.replace = true
-jetty.module.12.src = /net/shibboleth/idp/module/jetty/jetty-base-windows/start.d/idp.ini-windows
-jetty.module.12.dest = jetty-base/start.d/idp.ini
+jetty.module.12.src = /net/shibboleth/idp/module/jetty/jetty-base-12-windows/start.d/idp.ini-windows
+jetty.module.12.dest = jetty-base-12/start.d/idp.ini
jetty.module.12.nonwindows = false
jetty.module.12.windows = true
jetty.module.12.replace = false
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list