You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@synapse.apache.org by ve...@apache.org on 2017/01/08 20:31:20 UTC

svn commit: r1777910 - in /synapse/trunk/java: modules/transports/optional/fix/pom.xml pom.xml

Author: veithen
Date: Sun Jan  8 20:31:20 2017
New Revision: 1777910

URL: http://svn.apache.org/viewvc?rev=1777910&view=rev
Log:
Use a minimal set of dependencies in the Fix transport. In particular, don't depend on quickfixj-codegenerator.

Modified:
    synapse/trunk/java/modules/transports/optional/fix/pom.xml
    synapse/trunk/java/pom.xml

Modified: synapse/trunk/java/modules/transports/optional/fix/pom.xml
URL: http://svn.apache.org/viewvc/synapse/trunk/java/modules/transports/optional/fix/pom.xml?rev=1777910&r1=1777909&r2=1777910&view=diff
==============================================================================
--- synapse/trunk/java/modules/transports/optional/fix/pom.xml (original)
+++ synapse/trunk/java/modules/transports/optional/fix/pom.xml Sun Jan  8 20:31:20 2017
@@ -108,7 +108,11 @@
     <dependencies>
         <dependency>
             <groupId>org.quickfixj</groupId>
-            <artifactId>quickfixj-all</artifactId>
+            <artifactId>quickfixj-core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.quickfixj</groupId>
+            <artifactId>quickfixj-messages-all</artifactId>
         </dependency>
         <dependency>
             <groupId>xmlunit</groupId>

Modified: synapse/trunk/java/pom.xml
URL: http://svn.apache.org/viewvc/synapse/trunk/java/pom.xml?rev=1777910&r1=1777909&r2=1777910&view=diff
==============================================================================
--- synapse/trunk/java/pom.xml (original)
+++ synapse/trunk/java/pom.xml Sun Jan  8 20:31:20 2017
@@ -871,7 +871,12 @@
             <!-- Quickfix/J (FIX Transport) -->
             <dependency>
                 <groupId>org.quickfixj</groupId>
-                <artifactId>quickfixj-all</artifactId>
+                <artifactId>quickfixj-core</artifactId>
+                <version>${qfj.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.quickfixj</groupId>
+                <artifactId>quickfixj-messages-all</artifactId>
                 <version>${qfj.version}</version>
             </dependency>