You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/09/30 18:24:17 UTC

[camel] branch master updated: CAMEL-15505: camel-quickfix should not depend on quickfixj-all

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

davsclaus 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 f12c5c0  CAMEL-15505: camel-quickfix should not depend on quickfixj-all
f12c5c0 is described below

commit f12c5c0d7daf9c939e7248804daba0c13ac65302
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Sep 30 20:23:44 2020 +0200

    CAMEL-15505: camel-quickfix should not depend on quickfixj-all
---
 components/camel-quickfix/pom.xml | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/components/camel-quickfix/pom.xml b/components/camel-quickfix/pom.xml
index 7f146b7..27bb750 100644
--- a/components/camel-quickfix/pom.xml
+++ b/components/camel-quickfix/pom.xml
@@ -45,7 +45,12 @@
         </dependency>
         <dependency>
             <groupId>org.quickfixj</groupId>
-            <artifactId>quickfixj-all</artifactId>
+            <artifactId>quickfixj-core</artifactId>
+            <version>${quickfixj-version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.quickfixj</groupId>
+            <artifactId>quickfixj-messages-all</artifactId>
             <version>${quickfixj-version}</version>
         </dependency>
 
@@ -76,6 +81,11 @@
             <artifactId>mockito-junit-jupiter</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.hamcrest</groupId>
+            <artifactId>hamcrest</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
 </project>