[java-idp-jetty-base] branch 12 updated (9a55916 -> f02ab34)
Rod Widdowson
rdw at steadingsoftware.com
Sat Oct 19 12:13:06 UTC 2024
This is an automated email from the git hooks/post-receive script.
rdw pushed a change to branch 12
in repository java-idp-jetty-base.
from 9a55916 IDP-2334 Determine sensible defaults for the server's root page.
add 7b79afe IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 8bcbaf3 IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 62fdf0a IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 783c150 IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add dc09464 IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add eed0a18 IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 1fcf252 IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 07ba58d IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 2aca28b IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 8e2762c IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 6f40464 IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 44e765e IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 3f2fa18 IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add e35cfbf IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 9408ac3 IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 0705341 IDP-2335 runjetty.sh must use absolute paths for some variables
add cbb6684 IDP-2334 Determine sensible defaults for the server's root page.
add 5d421e6 IDP-2333 Generate idp-userfacing.p12 on initial module enable
add a14281d IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add a1259e4 IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 1e3c633 IDP-2297 Explore extending the Plugin and Module Infrastructure to allow Jetty installation
add 6416e6b Build jetty-base tarball/zip file
new 48d3f81 Turn on M2 checking during build
new f02ab34 Clean up poms
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 2 +-
jetty-base-dist/.check-m2 | 1 +
jetty-base-dist/pom.xml | 46 ++
jetty-base-dist/src/main/assembly/plugin.xml | 48 ++
.../src/main/enforcer/shibbolethKeys.gpg | Bin 0 -> 55669 bytes
.../src/main/resources/bootstrap/keys.txt | 484 +++++++++++++++++++++
{doc => jetty-base-impl/doc}/LICENSE.txt | 0
pom.xml => jetty-base-impl/pom.xml | 130 +++---
.../src}/main/assembly/testbed.xml | 0
{src => jetty-base-impl/src}/main/assembly/tgz.xml | 0
{src => jetty-base-impl/src}/main/assembly/zip.xml | 0
.../idp/plugin/jettybase/JettyBaseModule.java | 109 +++++
.../idp/plugin/jettybase/JettyBasePlugin.java | 44 ++
.../shibboleth/idp/plugin/jettybase/Version.java | 46 ++
.../idp/plugin/jettybase/package-info.java | 17 +
.../src}/main/resources/.gitkeep | 0
.../services/net.shibboleth.idp.module.IdPModule | 1 +
.../services/net.shibboleth.idp.plugin.IdPPlugin | 1 +
.../idp/plugin/jettybase/module.properties | 80 ++++
.../idp/plugin/jettybase/module/config-jetty.bat | 123 ++++++
.../jetty-base-windows/start.d/idp-system.ini | 17 +
.../jetty-base-windows/start.d/idp.ini-windows | 23 +
.../module}/jetty-base/credentials/.gitkeep | 0
.../module}/jetty-base/etc/idp-backchannel.xml | 0
.../module}/jetty-base/etc/jetty-requestlog.xml | 0
.../lib/idp-backchannel/jetty94-dta-ssl-1.0.0.jar | Bin
.../jettybase/module}/jetty-base/logs/.gitkeep | 0
.../jettybase/module}/jetty-base/modules/idp.mod | 0
.../module}/jetty-base/resources/logback.xml | 0
.../module}/jetty-base/start.d/custom.ini | 0
.../jettybase/module}/jetty-base/start.d/idp.ini | 12 +-
.../jettybase/module}/jetty-base/static/index.html | 0
.../jettybase/module}/jetty-base/tmp/.gitkeep | 0
.../jettybase/module}/jetty-base/webapps/idp.xml | 0
.../module}/jetty-base/webapps/static.xml | 4 +-
.../idp/plugin/jettybase/module/runjetty.bat | 49 +++
.../idp/plugin/jettybase/module/runjetty.sh | 49 +++
.../idp/plugin/jettybase/plugin.properties | 20 +
jetty-base-packages/pom.xml | 129 ++++++
jetty-base-packages/src/main/assembly/logback.xml | 15 +
pom.xml | 166 +++----
src/site/site.xml | 11 -
src/test/resources/jetty-base/etc/idp-testbed.xml | 28 --
src/test/resources/jetty-base/etc/web-override.xml | 37 --
.../resources/jetty-base/modules/idp-testbed.mod | 13 -
src/test/resources/jetty-base/webapps/idp.xml | 16 -
46 files changed, 1436 insertions(+), 285 deletions(-)
create mode 100644 jetty-base-dist/.check-m2
create mode 100644 jetty-base-dist/pom.xml
create mode 100644 jetty-base-dist/src/main/assembly/plugin.xml
create mode 100644 jetty-base-dist/src/main/enforcer/shibbolethKeys.gpg
create mode 100644 jetty-base-dist/src/main/resources/bootstrap/keys.txt
rename {doc => jetty-base-impl/doc}/LICENSE.txt (100%)
copy pom.xml => jetty-base-impl/pom.xml (51%)
rename {src => jetty-base-impl/src}/main/assembly/testbed.xml (100%)
rename {src => jetty-base-impl/src}/main/assembly/tgz.xml (100%)
rename {src => jetty-base-impl/src}/main/assembly/zip.xml (100%)
create mode 100644 jetty-base-impl/src/main/java/net/shibboleth/idp/plugin/jettybase/JettyBaseModule.java
create mode 100644 jetty-base-impl/src/main/java/net/shibboleth/idp/plugin/jettybase/JettyBasePlugin.java
create mode 100644 jetty-base-impl/src/main/java/net/shibboleth/idp/plugin/jettybase/Version.java
create mode 100644 jetty-base-impl/src/main/java/net/shibboleth/idp/plugin/jettybase/package-info.java
rename {src => jetty-base-impl/src}/main/resources/.gitkeep (100%)
create mode 100644 jetty-base-impl/src/main/resources/META-INF/services/net.shibboleth.idp.module.IdPModule
create mode 100644 jetty-base-impl/src/main/resources/META-INF/services/net.shibboleth.idp.plugin.IdPPlugin
create mode 100644 jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module.properties
create mode 100644 jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module/config-jetty.bat
create mode 100644 jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module/jetty-base-windows/start.d/idp-system.ini
create mode 100644 jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module/jetty-base-windows/start.d/idp.ini-windows
rename {src/main/resources => jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module}/jetty-base/credentials/.gitkeep (100%)
rename {src/main/resources => jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module}/jetty-base/etc/idp-backchannel.xml (100%)
rename {src/main/resources => jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module}/jetty-base/etc/jetty-requestlog.xml (100%)
rename {src/main/resources => jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module}/jetty-base/lib/idp-backchannel/jetty94-dta-ssl-1.0.0.jar (100%)
rename {src/main/resources => jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module}/jetty-base/logs/.gitkeep (100%)
rename {src/main/resources => jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module}/jetty-base/modules/idp.mod (100%)
rename {src/main/resources => jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module}/jetty-base/resources/logback.xml (100%)
rename {src/main/resources => jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module}/jetty-base/start.d/custom.ini (100%)
rename {src/main/resources => jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module}/jetty-base/start.d/idp.ini (76%)
copy {src/main/resources => jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module}/jetty-base/static/index.html (100%)
rename {src/main/resources => jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module}/jetty-base/tmp/.gitkeep (100%)
rename {src/main/resources => jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module}/jetty-base/webapps/idp.xml (100%)
rename {src/main/resources => jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module}/jetty-base/webapps/static.xml (79%)
create mode 100644 jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module/runjetty.bat
create mode 100644 jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/module/runjetty.sh
create mode 100644 jetty-base-impl/src/main/resources/net/shibboleth/idp/plugin/jettybase/plugin.properties
create mode 100644 jetty-base-packages/pom.xml
create mode 100644 jetty-base-packages/src/main/assembly/logback.xml
delete mode 100644 src/site/site.xml
delete mode 100644 src/test/resources/jetty-base/etc/idp-testbed.xml
delete mode 100644 src/test/resources/jetty-base/etc/web-override.xml
delete mode 100644 src/test/resources/jetty-base/modules/idp-testbed.mod
delete mode 100644 src/test/resources/jetty-base/webapps/idp.xml
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list