[java-identity-provider] 01/02: IDP-1857 Log the plugins at IdP startup
Rod Widdowson
rdw at steadingsoftware.com
Wed Sep 29 19:23:28 UTC 2021
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=d5c4eba2243d170af98ff7e5a6c239f8799a9373
commit d5c4eba2243d170af98ff7e5a6c239f8799a9373
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Wed Sep 29 19:47:43 2021 +0100
IDP-1857 Log the plugins at IdP startup
https://shibboleth.atlassian.net/browse/IDP-1857
Stage 1 - move net.shibboleth.idp.log from idp-core to idp-admin-api
---
idp-admin-api/pom.xml | 15 +++++++++++++++
.../net/shibboleth/idp/log/LogbackLoggingService.java | 0
.../main/java/net/shibboleth/idp/log/LoggingService.java | 0
.../net/shibboleth/idp/log/SLF4JMDCServletFilter.java | 0
.../main/java/net/shibboleth/idp/log/package-info.java | 0
idp-core/pom.xml | 15 ---------------
6 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/idp-admin-api/pom.xml b/idp-admin-api/pom.xml
index 6b1a9ae50..053cb35ef 100644
--- a/idp-admin-api/pom.xml
+++ b/idp-admin-api/pom.xml
@@ -37,6 +37,16 @@
<artifactId>idp-authn-api</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <scope>compile</scope><!-- normally runtime -->
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-core</artifactId>
+ <scope>compile</scope><!-- normally runtime -->
+ </dependency>
<dependency>
<groupId>${opensaml.groupId}</groupId>
@@ -67,6 +77,11 @@
</dependency>
<!-- Provided Dependencies -->
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>javax.servlet-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
<!-- Runtime Dependencies -->
diff --git a/idp-core/src/main/java/net/shibboleth/idp/log/LogbackLoggingService.java b/idp-admin-api/src/main/java/net/shibboleth/idp/log/LogbackLoggingService.java
similarity index 100%
rename from idp-core/src/main/java/net/shibboleth/idp/log/LogbackLoggingService.java
rename to idp-admin-api/src/main/java/net/shibboleth/idp/log/LogbackLoggingService.java
diff --git a/idp-core/src/main/java/net/shibboleth/idp/log/LoggingService.java b/idp-admin-api/src/main/java/net/shibboleth/idp/log/LoggingService.java
similarity index 100%
rename from idp-core/src/main/java/net/shibboleth/idp/log/LoggingService.java
rename to idp-admin-api/src/main/java/net/shibboleth/idp/log/LoggingService.java
diff --git a/idp-core/src/main/java/net/shibboleth/idp/log/SLF4JMDCServletFilter.java b/idp-admin-api/src/main/java/net/shibboleth/idp/log/SLF4JMDCServletFilter.java
similarity index 100%
rename from idp-core/src/main/java/net/shibboleth/idp/log/SLF4JMDCServletFilter.java
rename to idp-admin-api/src/main/java/net/shibboleth/idp/log/SLF4JMDCServletFilter.java
diff --git a/idp-core/src/main/java/net/shibboleth/idp/log/package-info.java b/idp-admin-api/src/main/java/net/shibboleth/idp/log/package-info.java
similarity index 100%
rename from idp-core/src/main/java/net/shibboleth/idp/log/package-info.java
rename to idp-admin-api/src/main/java/net/shibboleth/idp/log/package-info.java
diff --git a/idp-core/pom.xml b/idp-core/pom.xml
index 53bb620a5..ce26be507 100644
--- a/idp-core/pom.xml
+++ b/idp-core/pom.xml
@@ -30,16 +30,6 @@
<groupId>${spring.groupId}</groupId>
<artifactId>spring-context</artifactId>
</dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <scope>compile</scope><!-- normally runtime -->
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-core</artifactId>
- <scope>compile</scope><!-- normally runtime -->
- </dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
@@ -100,11 +90,6 @@
</dependency>
<!-- Provided Dependencies -->
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <scope>provided</scope>
- </dependency>
<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list