You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2021/03/02 14:30:55 UTC

[camel] branch master updated: yaml dsl: fix wrong scope for test dependencies

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

lburgazzoli 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 c7c9de4  yaml dsl: fix wrong scope for test dependencies
c7c9de4 is described below

commit c7c9de4a44299ef8cbc1aaaa67006281d05d9f1b
Author: Luca Burgazzoli <lb...@gmail.com>
AuthorDate: Tue Mar 2 15:29:57 2021 +0100

    yaml dsl: fix wrong scope for test dependencies
---
 dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml b/dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml
index 6e17776..43af56b 100644
--- a/dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml
+++ b/dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml
@@ -145,15 +145,18 @@
             <groupId>com.github.java-json-tools</groupId>
             <artifactId>json-schema-validator</artifactId>
             <version>${json-schema-validator-version}</version>
+            <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-databind</artifactId>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>com.fasterxml.jackson.dataformat</groupId>
             <artifactId>jackson-dataformat-yaml</artifactId>
+            <scope>test</scope>
         </dependency>
 
         <dependency>