[java-identity-provider] 01/02: Move runtime logging dependencies to idp-war-distribution
Tom Zeller
tzeller at dragonacea.biz
Mon May 18 17:17:40 UTC 2020
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch master
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=1bf2e1ef01d3392a1a1d7326175ca536f03d39df
commit 1bf2e1ef01d3392a1a1d7326175ca536f03d39df
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Mon May 18 12:02:33 2020 -0500
Move runtime logging dependencies to idp-war-distribution
Note : runtime dependencies of idp-distribution are not automatically
packaged by Maven because the <packaging> is POM.
---
idp-distribution/pom.xml | 10 ----------
idp-war-distribution/pom.xml | 12 ++++++++++++
2 files changed, 12 insertions(+), 10 deletions(-)
diff --git a/idp-distribution/pom.xml b/idp-distribution/pom.xml
index fc802f021..8281ad76a 100644
--- a/idp-distribution/pom.xml
+++ b/idp-distribution/pom.xml
@@ -68,16 +68,6 @@
<artifactId>logback-core</artifactId>
<scope>runtime</scope>
</dependency>
- <dependency>
- <groupId>com.sun.mail</groupId>
- <artifactId>jakarta.mail</artifactId>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.codehaus.janino</groupId>
- <artifactId>janino</artifactId>
- <scope>runtime</scope>
- </dependency>
<!-- Support for JVM metrics, per IDP-1205. -->
<dependency>
diff --git a/idp-war-distribution/pom.xml b/idp-war-distribution/pom.xml
index f029ac2b7..d8535e72f 100644
--- a/idp-war-distribution/pom.xml
+++ b/idp-war-distribution/pom.xml
@@ -37,6 +37,18 @@
<artifactId>logback-core</artifactId>
<scope>runtime</scope>
</dependency>
+ <!-- Support for logback SMTP appender. -->
+ <dependency>
+ <groupId>com.sun.mail</groupId>
+ <artifactId>jakarta.mail</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ <!-- Support for logback evaluator filter. -->
+ <dependency>
+ <groupId>org.codehaus.janino</groupId>
+ <artifactId>janino</artifactId>
+ <scope>runtime</scope>
+ </dependency>
<!-- IDP-1205 - Support for JVM metrics -->
<dependency>
<groupId>io.dropwizard.metrics</groupId>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list