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 2009/05/03 16:27:52 UTC

svn commit: r771060 - /synapse/trunk/java/modules/core/pom.xml

Author: veithen
Date: Sun May  3 14:27:52 2009
New Revision: 771060

URL: http://svn.apache.org/viewvc?rev=771060&view=rev
Log:
Restore the explicit dependency on axis2-saaj; we should not rely on axis2-saaj being a transitive dependency.

Modified:
    synapse/trunk/java/modules/core/pom.xml

Modified: synapse/trunk/java/modules/core/pom.xml
URL: http://svn.apache.org/viewvc/synapse/trunk/java/modules/core/pom.xml?rev=771060&r1=771059&r2=771060&view=diff
==============================================================================
--- synapse/trunk/java/modules/core/pom.xml (original)
+++ synapse/trunk/java/modules/core/pom.xml Sun May  3 14:27:52 2009
@@ -183,5 +183,13 @@
             <groupId>org.apache.synapse</groupId>
             <artifactId>synapse-vfs-transport</artifactId>
         </dependency>
+        
+        <!-- This is used by the CacheMediator. TODO: since axis2-saaj is based on
+             Axiom, it should not be necessary to rely on SAAJ and we should try
+             to eliminate this dependency. -->
+        <dependency>
+            <groupId>org.apache.axis2</groupId>
+            <artifactId>axis2-saaj</artifactId>
+        </dependency>
     </dependencies>
 </project>