You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ff...@apache.org on 2008/08/13 12:31:13 UTC

svn commit: r685504 - in /servicemix/smx3/branches/servicemix-3.2: ./ common/servicemix-soap/ common/servicemix-soap2/ deployables/bindingcomponents/servicemix-cxf-bc/ deployables/bindingcomponents/servicemix-file/ deployables/bindingcomponents/service...

Author: ffang
Date: Wed Aug 13 03:31:08 2008
New Revision: 685504

URL: http://svn.apache.org/viewvc?rev=685504&view=rev
Log:
[SM-1510]exclude xalan dependency to reduce kit size

Modified:
    servicemix/smx3/branches/servicemix-3.2/common/servicemix-soap/pom.xml
    servicemix/smx3/branches/servicemix-3.2/common/servicemix-soap2/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-file/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-ftp/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-http/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-jms/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-truezip/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-xmpp/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-bean/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-camel/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-cxf-se/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-drools/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-eip/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-jsr181/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-lwcontainer/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-osworkflow/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-quartz/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-saxon/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-script/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-wsn2005/pom.xml
    servicemix/smx3/branches/servicemix-3.2/deployables/sharedlibraries/servicemix-shared/pom.xml
    servicemix/smx3/branches/servicemix-3.2/pom.xml

Modified: servicemix/smx3/branches/servicemix-3.2/common/servicemix-soap/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/common/servicemix-soap/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/common/servicemix-soap/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/common/servicemix-soap/pom.xml Wed Aug 13 03:31:08 2008
@@ -55,6 +55,11 @@
     <dependency>
       <groupId>org.apache.ws.security</groupId>
       <artifactId>wss4j</artifactId>
+      <exclusions>
+          <groupId>xalan</groupId>
+          <artifactId>xalan</artifactId>
+      </exclusions>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>bouncycastle</groupId>

Modified: servicemix/smx3/branches/servicemix-3.2/common/servicemix-soap2/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/common/servicemix-soap2/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/common/servicemix-soap2/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/common/servicemix-soap2/pom.xml Wed Aug 13 03:31:08 2008
@@ -55,6 +55,11 @@
     <dependency>
       <groupId>org.apache.ws.security</groupId>
       <artifactId>wss4j</artifactId>
+      <exclusions>
+          <groupId>xalan</groupId>
+          <artifactId>xalan</artifactId>
+      </exclusions>
+
     </dependency>
     <dependency>
       <groupId>bouncycastle</groupId>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/pom.xml Wed Aug 13 03:31:08 2008
@@ -153,7 +153,7 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.1</version>
+      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -261,6 +261,12 @@
        <scope>provided</scope>
     </dependency>
     <dependency>
+       <groupId>bouncycastle</groupId>
+       <artifactId>bcprov-jdk14</artifactId>
+       <version>${bcprov-version}</version>
+       <scope>provided</scope>
+    </dependency> 
+    <dependency>
        <groupId>org.apache.ws.commons.neethi</groupId>
        <artifactId>neethi</artifactId>
        <version>2.0</version>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-file/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-file/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-file/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-file/pom.xml Wed Aug 13 03:31:08 2008
@@ -46,9 +46,14 @@
       <scope>provided</scope>
     </dependency>
     <dependency>
+       <groupId>xalan</groupId>
+       <artifactId>xalan</artifactId>
+       <scope>provided</scope>
+    </dependency>
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.1</version>
+      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-ftp/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-ftp/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-ftp/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-ftp/pom.xml Wed Aug 13 03:31:08 2008
@@ -53,6 +53,23 @@
       <groupId>oro</groupId>
       <artifactId>oro</artifactId>
     </dependency>
+    <dependency>
+       <groupId>xalan</groupId>
+       <artifactId>xalan</artifactId>
+       <scope>provided</scope>
+    </dependency>
+    <dependency>
+        <groupId>bouncycastle</groupId>
+        <artifactId>bcprov-jdk14</artifactId>
+        <version>${bcprov-version}</version>
+        <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit-version}</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-http/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-http/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-http/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-http/pom.xml Wed Aug 13 03:31:08 2008
@@ -215,6 +215,17 @@
       <artifactId>xstream</artifactId>
       <scope>provided</scope>
     </dependency>
+    <dependency>
+       <groupId>xalan</groupId>
+       <artifactId>xalan</artifactId>
+       <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit-version}</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
 </project>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-jms/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-jms/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-jms/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-jms/pom.xml Wed Aug 13 03:31:08 2008
@@ -162,6 +162,23 @@
       <version>${spring-version}</version>
       <scope>provided</scope>
     </dependency>    
+    <dependency>
+       <groupId>xalan</groupId>
+       <artifactId>xalan</artifactId>
+       <scope>provided</scope>
+    </dependency>
+    <dependency>
+        <groupId>bouncycastle</groupId>
+        <artifactId>bcprov-jdk14</artifactId>
+        <version>${bcprov-version}</version>
+        <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit-version}</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-truezip/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-truezip/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-truezip/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-truezip/pom.xml Wed Aug 13 03:31:08 2008
@@ -52,9 +52,14 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.1</version>
+      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
+    <dependency>
+       <groupId>xalan</groupId>
+       <artifactId>xalan</artifactId>
+       <scope>provided</scope>
+    </dependency>
   </dependencies>
 
   <build>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-xmpp/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-xmpp/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-xmpp/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-xmpp/pom.xml Wed Aug 13 03:31:08 2008
@@ -40,6 +40,11 @@
       <version>${servicemix-version}</version>
     </dependency>
     <dependency>
+        <groupId>xalan</groupId>
+        <artifactId>xalan</artifactId>
+        <scope>provided</scope>
+    </dependency>
+    <dependency>
       <groupId>org.apache.servicemix</groupId>
       <artifactId>servicemix-core</artifactId>
       <version>${servicemix-version}</version>
@@ -56,7 +61,7 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.1</version>
+      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
   </dependencies>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-bean/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-bean/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-bean/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-bean/pom.xml Wed Aug 13 03:31:08 2008
@@ -51,9 +51,14 @@
       <scope>provided</scope>
     </dependency>
     <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.1</version>
+      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
     <dependency>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-camel/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-camel/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-camel/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-camel/pom.xml Wed Aug 13 03:31:08 2008
@@ -145,6 +145,7 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
+      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
 
@@ -175,6 +176,11 @@
       <version>1.1</version>
       <scope>provided</scope>
     </dependency>
+    <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <scope>provided</scope>
+    </dependency>
   </dependencies>
 
   <build>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-cxf-se/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-cxf-se/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-cxf-se/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-cxf-se/pom.xml Wed Aug 13 03:31:08 2008
@@ -69,6 +69,11 @@
                     <artifactId>stax-api</artifactId>
                     <scope>provided</scope>
                 </dependency>
+                <dependency>
+                    <groupId>xalan</groupId>
+                    <artifactId>xalan</artifactId>
+                    <scope>provided</scope>
+                </dependency>
 
 		<dependency>
 		    <groupId>org.apache.cxf</groupId>
@@ -147,8 +152,14 @@
 			<groupId>org.apache.cxf</groupId>
 			<artifactId>cxf-testutils</artifactId>
 			<version>${cxf-version}</version>
-                        <scope>provided</scope>
+            <scope>provided</scope>
 		</dependency>
+        <dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+            <version>${junit-version}</version>
+            <scope>test</scope>
+        </dependency>
 
 	</dependencies>
 	<build>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-drools/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-drools/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-drools/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-drools/pom.xml Wed Aug 13 03:31:08 2008
@@ -82,9 +82,14 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.1</version>
+      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <scope>provided</scope>
+    </dependency>
   </dependencies>
   <build>
     <plugins>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-eip/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-eip/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-eip/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-eip/pom.xml Wed Aug 13 03:31:08 2008
@@ -78,6 +78,17 @@
       <artifactId>spring</artifactId>
       <scope>provided</scope>
     </dependency>
+    <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit-version}</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-jsr181/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-jsr181/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-jsr181/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-jsr181/pom.xml Wed Aug 13 03:31:08 2008
@@ -108,6 +108,17 @@
       <artifactId>xbean-spring</artifactId>
       <scope>provided</scope>
     </dependency>
+    <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit-version}</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-lwcontainer/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-lwcontainer/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-lwcontainer/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-lwcontainer/pom.xml Wed Aug 13 03:31:08 2008
@@ -70,6 +70,17 @@
       <artifactId>servicemix-quartz</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit-version}</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-osworkflow/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-osworkflow/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-osworkflow/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-osworkflow/pom.xml Wed Aug 13 03:31:08 2008
@@ -71,7 +71,7 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.1</version>
+      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -84,6 +84,17 @@
       <artifactId>bsf</artifactId>
       <version>2.3.0</version>
     </dependency>
+    <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+        <groupId>bouncycastle</groupId>
+        <artifactId>bcprov-jdk14</artifactId>
+        <version>${bcprov-version}</version>
+        <scope>provided</scope>
+    </dependency>
   </dependencies>
 
   <build>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-quartz/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-quartz/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-quartz/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-quartz/pom.xml Wed Aug 13 03:31:08 2008
@@ -100,6 +100,17 @@
       <artifactId>xml-apis</artifactId>
       <scope>provided</scope>
     </dependency>
+    <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit-version}</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-saxon/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-saxon/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-saxon/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-saxon/pom.xml Wed Aug 13 03:31:08 2008
@@ -60,9 +60,14 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.1</version>
+      <version>${junit-version}</version>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <scope>provided</scope>
+    </dependency>
   </dependencies>
   <build>
     <plugins>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-script/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-script/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-script/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-script/pom.xml Wed Aug 13 03:31:08 2008
@@ -82,6 +82,11 @@
 			<version>${spring-version}</version>
 			<scope>provided</scope>
 		</dependency>
+    <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <scope>provided</scope>
+    </dependency>
 		<dependency>
 			<groupId>org.jruby</groupId>
 			<artifactId>jruby</artifactId>
@@ -97,7 +102,7 @@
 		<dependency>
 			<groupId>junit</groupId>
 			<artifactId>junit</artifactId>
-			<version>3.8.1</version>
+            <version>${junit-version}</version>
 			<scope>test</scope>
 		</dependency>
 		<dependency>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-wsn2005/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-wsn2005/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-wsn2005/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/serviceengines/servicemix-wsn2005/pom.xml Wed Aug 13 03:31:08 2008
@@ -87,6 +87,17 @@
       <scope>provided</scope>
     </dependency>
     <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit-version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>org.apache.servicemix</groupId>
       <artifactId>servicemix-components</artifactId>
       <scope>test</scope>

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/sharedlibraries/servicemix-shared/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/sharedlibraries/servicemix-shared/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/sharedlibraries/servicemix-shared/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/sharedlibraries/servicemix-shared/pom.xml Wed Aug 13 03:31:08 2008
@@ -59,6 +59,17 @@
       <artifactId>wsdl4j</artifactId>
       <scope>provided</scope>
     </dependency>
+    <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit-version}</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
   <build>

Modified: servicemix/smx3/branches/servicemix-3.2/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/pom.xml?rev=685504&r1=685503&r2=685504&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/pom.xml (original)
+++ servicemix/smx3/branches/servicemix-3.2/pom.xml Wed Aug 13 03:31:08 2008
@@ -225,6 +225,8 @@
         <jaxb.impl.version>2.0.1</jaxb.impl.version>
         <derby-version>10.2.2.0</derby-version>
         <saxon-version>8.9</saxon-version>
+        <bcprov-version>136</bcprov-version>
+        <junit-version>3.8.1</junit-version>
         <releases-repo-id>apache</releases-repo-id>
         <releases-repo-name>Apache Repository</releases-repo-name>
         <releases-repo-url>http://people.apache.org/repo/m2-ibiblio-rsync-repository</releases-repo-url>
@@ -1474,7 +1476,7 @@
             <dependency>
                 <groupId>junit</groupId>
                 <artifactId>junit</artifactId>
-                <version>3.8.1</version>
+                <version>${junit-version}</version>
             </dependency>
             <dependency>
                 <groupId>org.logicblaze.lingo</groupId>