[java-parent-project] branch maint-11 updated: IDP-2247 Latest commons-compress breaks the plugin installer.
Rod Widdowson
rdw at steadingsoftware.com
Tue Feb 20 15:23:44 UTC 2024
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch maint-11
in repository java-parent-project.
View the commit online:
http://git.shibboleth.net/view/?p=java-parent-project.git;a=commit;h=3764ac5bba216fd1dfc9889fe1a55c30ab4559e3
The following commit(s) were added to refs/heads/maint-11 by this push:
new 3764ac5 IDP-2247 Latest commons-compress breaks the plugin installer.
3764ac5 is described below
commit 3764ac5bba216fd1dfc9889fe1a55c30ab4559e3
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Tue Feb 20 15:23:30 2024 +0000
IDP-2247 Latest commons-compress breaks the plugin installer.
https://shibboleth.atlassian.net/browse/IDP-2247
We have to manage commons-compress ourselves
cd ..\jav
---
pom.xml | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/pom.xml b/pom.xml
index fd755fc..cb48c7e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,7 +34,9 @@
<ant.version>1.10.12</ant.version>
<bouncycastle.version>1.72</bouncycastle.version>
<bouncycastle.pg.version>1.72.2</bouncycastle.pg.version>
+ <!-- IMPORTANT: commons-compress and commons-io versions need to be updated with the -io version coming from -compress. -->
<commons.compress.version>1.26.0</commons.compress.version>
+ <commons.io.version>2.15.1</commons.io.version>
<cryptacular.version>1.2.5</cryptacular.version>
<duoweb.version>1.3</duoweb.version>
<!-- IMPORTANT: httpclient and httpcore versions need to be updated together. -->
@@ -187,6 +189,11 @@
<artifactId>commons-compress</artifactId>
<version>${commons.compress.version}</version>
</dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>${commons.io.version}</version>
+ </dependency>
<dependency>
<groupId>com.duosecurity</groupId>
<artifactId>DuoWeb</artifactId>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list