You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/08/05 12:43:43 UTC

[camel] branch camel-3.4.x updated: Camel-Slack: Removed junit from jsonsimple dependency, it shouldn't be a runtime dependency (#4072)

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

acosentino pushed a commit to branch camel-3.4.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.4.x by this push:
     new 602e636  Camel-Slack: Removed junit from jsonsimple dependency, it shouldn't be a runtime dependency (#4072)
602e636 is described below

commit 602e636f18f74a5d2c62a642e9db89b65640ca25
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Aug 5 14:43:32 2020 +0200

    Camel-Slack: Removed junit from jsonsimple dependency, it shouldn't be a runtime dependency (#4072)
---
 components/camel-slack/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/components/camel-slack/pom.xml b/components/camel-slack/pom.xml
index 14a83ad..9a90077 100644
--- a/components/camel-slack/pom.xml
+++ b/components/camel-slack/pom.xml
@@ -50,6 +50,12 @@
             <groupId>com.googlecode.json-simple</groupId>
             <artifactId>json-simple</artifactId>
             <version>${json-simple-version}</version>
+            <exclusions>
+               <exclusion>
+                   <groupId>junit</groupId>
+                   <artifactId>junit</artifactId>
+               </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>