[java-identity-provider] 01/03: Handle pom parsing oddities as per JMVN-14
Rod Widdowson
rdw at steadingsoftware.com
Fri Dec 17 13:45:52 UTC 2021
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch maint-4.1
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=579af065fff9ecf852cd15844b7d77ea4c20695b
commit 579af065fff9ecf852cd15844b7d77ea4c20695b
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Fri Dec 17 11:21:22 2021 +0000
Handle pom parsing oddities as per JMVN-14
Force declare the logback products as managed dependencies like
we do for Spring
---
idp-parent/pom.xml | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/idp-parent/pom.xml b/idp-parent/pom.xml
index 96932070c..a5cc782c3 100644
--- a/idp-parent/pom.xml
+++ b/idp-parent/pom.xml
@@ -273,6 +273,44 @@
<!-- Provided Dependencies -->
<!-- Runtime Dependencies -->
+ <!-- Re add log back as per JVMN-14 -->
+
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <version>${logback.version}</version>
+ <scope>runtime</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.mail</groupId>
+ <artifactId>mail</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-core</artifactId>
+ <version>${logback.version}</version>
+ <scope>runtime</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.mail</groupId>
+ <artifactId>mail</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-access</artifactId>
+ <version>${logback.version}</version>
+ <scope>runtime</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.mail</groupId>
+ <artifactId>mail</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
<!-- Test Dependencies -->
<dependency>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list