You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by as...@apache.org on 2019/03/25 10:19:15 UTC

[camel-k-runtime] 01/01: Change log4j-slf4j-impl dependency scope from runtime to test

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

astefanutti pushed a commit to branch pr-01
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit ee41c7a2bc82d5548bb648edaf4e4a8aeba775ee
Author: Antonin Stefanutti <an...@stefanutti.fr>
AuthorDate: Mon Mar 25 11:09:44 2019 +0100

    Change log4j-slf4j-impl dependency scope from runtime to test
---
 camel-k-runtime-groovy/pom.xml |  6 ++++++
 camel-k-runtime-jvm/pom.xml    | 12 ++++++------
 camel-k-runtime-kotlin/pom.xml |  6 ++++++
 3 files changed, 18 insertions(+), 6 deletions(-)

diff --git a/camel-k-runtime-groovy/pom.xml b/camel-k-runtime-groovy/pom.xml
index eede3f1..6916383 100644
--- a/camel-k-runtime-groovy/pom.xml
+++ b/camel-k-runtime-groovy/pom.xml
@@ -88,6 +88,12 @@
             <version>${assertj.version}</version>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>
+            <artifactId>log4j-slf4j-impl</artifactId>
+            <version>${log4j2.version}</version>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/camel-k-runtime-jvm/pom.xml b/camel-k-runtime-jvm/pom.xml
index 19c1d42..cf3fe77 100644
--- a/camel-k-runtime-jvm/pom.xml
+++ b/camel-k-runtime-jvm/pom.xml
@@ -52,12 +52,6 @@
             <version>${log4j2.version}</version>
         </dependency>
         <dependency>
-            <groupId>org.apache.logging.log4j</groupId>
-            <artifactId>log4j-slf4j-impl</artifactId>
-            <version>${log4j2.version}</version>
-            <scope>runtime</scope>
-        </dependency>
-        <dependency>
             <groupId>org.jooq</groupId>
             <artifactId>joor-java-8</artifactId>
             <version>${joor.version}</version>
@@ -110,6 +104,12 @@
             <version>${assertj.version}</version>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>
+            <artifactId>log4j-slf4j-impl</artifactId>
+            <version>${log4j2.version}</version>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/camel-k-runtime-kotlin/pom.xml b/camel-k-runtime-kotlin/pom.xml
index 16795f1..dd2d3ed 100644
--- a/camel-k-runtime-kotlin/pom.xml
+++ b/camel-k-runtime-kotlin/pom.xml
@@ -84,6 +84,12 @@
             <version>${assertj.version}</version>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>
+            <artifactId>log4j-slf4j-impl</artifactId>
+            <version>${log4j2.version}</version>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
     <build>