[java-idp-plugin-jetty] branch main updated: Tweak some help text and add missing option.
Scott Cantor
cantor.2 at osu.edu
Wed Nov 12 17:13:26 UTC 2025
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-idp-plugin-jetty.
View the commit online:
https://git.shibboleth.net/view/?p=java-idp-plugin-jetty.git;a=commit;h=9c39dc1e36417a9c362bace616ee0a14e7b3c9cb
The following commit(s) were added to refs/heads/main by this push:
new 9c39dc1 Tweak some help text and add missing option.
9c39dc1 is described below
commit 9c39dc1e36417a9c362bace616ee0a14e7b3c9cb
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Nov 12 12:13:23 2025 -0500
Tweak some help text and add missing option.
---
.../idp/plugin/jetty/cli/impl/JettyDownloadArguments.java | 7 ++++---
.../net/shibboleth/idp/plugin/jetty/cli/impl/JettyDownloadCLI.java | 5 +++--
2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/jetty-cli/src/main/java/net/shibboleth/idp/plugin/jetty/cli/impl/JettyDownloadArguments.java b/jetty-cli/src/main/java/net/shibboleth/idp/plugin/jetty/cli/impl/JettyDownloadArguments.java
index ec5cab0..37a7dc5 100644
--- a/jetty-cli/src/main/java/net/shibboleth/idp/plugin/jetty/cli/impl/JettyDownloadArguments.java
+++ b/jetty-cli/src/main/java/net/shibboleth/idp/plugin/jetty/cli/impl/JettyDownloadArguments.java
@@ -83,10 +83,11 @@ public class JettyDownloadArguments extends AbstractIdPHomeAwareCommandLineArgum
@Override public void printHelp(final @Nonnull PrintStream out) {
super.printHelp(out);
out.println();
- out.println(String.format(" %-22s %s", "--noascfile", "Whether to download the gpg signature and do a sig check. Defaults false"));
- out.println(String.format(" %-22s %s", "--nosigcheck", "Whether signature check the gpg signature against the trustore. Defaults false"));
- out.println(String.format(" %-22s %s", "--nonounpack", "Whether unpack the zip/tar.gz file after download. Defaults false"));
+ out.println(String.format(" %-22s %s", "--noascfile", "Skip download of the gpg signature and sig check? Defaults false"));
+ out.println(String.format(" %-22s %s", "--nosigcheck", "Skip signature check of download against the trustore? Defaults false"));
+ out.println(String.format(" %-22s %s", "--nonounpack", "Skip unpack the zip/tar.gz file after download? Defaults false"));
out.println();
+ out.println(String.format(" %-22s %s", "-v, --downloadVersion", "Jetty versioon to download"));
out.println(String.format(" %-22s %s", "--artifactId", "(Maven) ArtifactId to download. Defaults to \"jetty-home\"."));
out.println(String.format(" %-22s %s", "--type", "File type to download. Defaults to \"tar.gz\"."));
out.println(String.format(" %-22s %s", "--classifier", "(Maven) classifier to download. Optional."));
diff --git a/jetty-cli/src/main/java/net/shibboleth/idp/plugin/jetty/cli/impl/JettyDownloadCLI.java b/jetty-cli/src/main/java/net/shibboleth/idp/plugin/jetty/cli/impl/JettyDownloadCLI.java
index 6ecf33c..9da9e03 100644
--- a/jetty-cli/src/main/java/net/shibboleth/idp/plugin/jetty/cli/impl/JettyDownloadCLI.java
+++ b/jetty-cli/src/main/java/net/shibboleth/idp/plugin/jetty/cli/impl/JettyDownloadCLI.java
@@ -92,9 +92,10 @@ public class JettyDownloadCLI extends AbstractIdPHomeAwareCommandLine<JettyDownl
}
/** {@inheritDoc} */
+ @Override
@Nonnull protected List<Resource> getAdditionalSpringResources() {
return CollectionSupport.singletonList(
- new ClassPathResource("net/shibboleth/idp/conf/http-client.xml"));
+ new ClassPathResource("net/shibboleth/idp/conf/http-client.xml"));
}
@Override
@@ -111,7 +112,7 @@ public class JettyDownloadCLI extends AbstractIdPHomeAwareCommandLine<JettyDownl
}
if (args.isNoSigCheck()) {
- getLogger().warn("Downloading without signture checkin opens your organization to supply chain attacks");
+ getLogger().warn("Downloading without signture checking opens you to supply chain attacks");
}
if (args.getBaseURL() == null) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list