You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2019/03/16 13:36:45 UTC

[isis] branch ISIS-2033-IoC_spring updated: ISIS-2033: use SB's provided slf4j

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch ISIS-2033-IoC_spring
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/ISIS-2033-IoC_spring by this push:
     new 5bca9e1  ISIS-2033: use SB's provided slf4j
5bca9e1 is described below

commit 5bca9e149e9fb1babb6647d4e680dfb5abcc45cb
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sat Mar 16 14:36:41 2019 +0100

    ISIS-2033: use SB's provided slf4j
    
    Task-Url: https://issues.apache.org/jira/browse/ISIS-2033
---
 core/maven-plugin/pom.xml       | 6 ++++++
 core/runtime-extensions/pom.xml | 6 ++++++
 core/runtime/pom.xml            | 1 +
 core/viewer-wicket-ui/pom.xml   | 2 ++
 4 files changed, 15 insertions(+)

diff --git a/core/maven-plugin/pom.xml b/core/maven-plugin/pom.xml
index 48211e5..eca0473 100644
--- a/core/maven-plugin/pom.xml
+++ b/core/maven-plugin/pom.xml
@@ -113,6 +113,12 @@
             <groupId>org.apache.isis.core</groupId>
             <artifactId>isis-core-runtime</artifactId>
         </dependency>
+        
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-log4j12</artifactId>
+            <scope>provided</scope>
+        </dependency>
 
         <!-- 
         the plethora of exclusions in the following dependencies
diff --git a/core/runtime-extensions/pom.xml b/core/runtime-extensions/pom.xml
index f15f0f9..ab8c592 100644
--- a/core/runtime-extensions/pom.xml
+++ b/core/runtime-extensions/pom.xml
@@ -75,6 +75,12 @@
         </dependency>
         
         <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-log4j12</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        
+        <dependency>
             <groupId>org.apache.isis.core</groupId>
             <artifactId>isis-core-runtime</artifactId>
             <type>test-jar</type>
diff --git a/core/runtime/pom.xml b/core/runtime/pom.xml
index 1b7285f..67df166 100644
--- a/core/runtime/pom.xml
+++ b/core/runtime/pom.xml
@@ -97,6 +97,7 @@
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
+            <scope>provided</scope>
         </dependency>
 
 		<!-- HSQL-DB -->
diff --git a/core/viewer-wicket-ui/pom.xml b/core/viewer-wicket-ui/pom.xml
index 37c9b8e..4d830e2 100644
--- a/core/viewer-wicket-ui/pom.xml
+++ b/core/viewer-wicket-ui/pom.xml
@@ -133,10 +133,12 @@
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
+            <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
+            <scope>provided</scope>
         </dependency>
 	
         <!-- JDO API (non transient, provided by plugin) -->