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

zregvart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 6ad343e  CAMEL-14366: JUnit declared in compile scope
6ad343e is described below

commit 6ad343e7c6610536e2fac5018bad96255a9e9d1c
Author: Zoran Regvart <zregv...@apache.org>
AuthorDate: Mon Jan 6 15:33:29 2020 +0100

    CAMEL-14366: JUnit declared in compile scope
    
    This explicitly declares the `junit:junit` dependency in `test` scope,
    so it's not transitively inherited in `compile` scope.
---
 components/camel-fhir/camel-fhir-component/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/components/camel-fhir/camel-fhir-component/pom.xml 
b/components/camel-fhir/camel-fhir-component/pom.xml
index 3792f08..de3da13 100644
--- a/components/camel-fhir/camel-fhir-component/pom.xml
+++ b/components/camel-fhir/camel-fhir-component/pom.xml
@@ -103,6 +103,12 @@
 
         <!-- testing -->
         <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-test</artifactId>
             <scope>test</scope>

Reply via email to