You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2006/11/10 23:57:20 UTC

svn commit: r473562 - in /incubator/cxf/trunk: distribution/pom.xml integration/jbi/pom.xml rt/bindings/http/pom.xml rt/transports/jms/pom.xml

Author: dkulp
Date: Fri Nov 10 14:57:20 2006
New Revision: 473562

URL: http://svn.apache.org/viewvc?view=rev&rev=473562
Log:
Updates to exclude some jars from distribution that don't need to be included

Modified:
    incubator/cxf/trunk/distribution/pom.xml
    incubator/cxf/trunk/integration/jbi/pom.xml
    incubator/cxf/trunk/rt/bindings/http/pom.xml
    incubator/cxf/trunk/rt/transports/jms/pom.xml

Modified: incubator/cxf/trunk/distribution/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/pom.xml?view=diff&rev=473562&r1=473561&r2=473562
==============================================================================
--- incubator/cxf/trunk/distribution/pom.xml (original)
+++ incubator/cxf/trunk/distribution/pom.xml Fri Nov 10 14:57:20 2006
@@ -33,7 +33,7 @@
     <properties>
         <topDirectoryLocation>..</topDirectoryLocation>
         <java.source.version>1.4</java.source.version>
-	<cxf.version>${pom.version}</cxf.version>
+        <cxf.version>${pom.version}</cxf.version>
     </properties>
 
     <dependencies>
@@ -100,7 +100,7 @@
             <version>${pom.version}</version>
         </dependency>
 
-	<dependency>
+        <dependency>
             <groupId>${pom.groupId}</groupId>
             <artifactId>cxf-integration-jbi</artifactId>
             <version>${pom.version}</version>
@@ -148,44 +148,43 @@
             <version>${pom.version}</version>
         </dependency>
 
-	<dependency>
-	    <groupId>${pom.groupId}</groupId>
-	    <artifactId>cxf-rt-bindings-http</artifactId>
-	    <version>${pom.version}</version>
-	</dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>cxf-rt-bindings-http</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
 
         <dependency>
             <groupId>${pom.groupId}</groupId>
             <artifactId>cxf-rt-ws-addr</artifactId>
             <version>${pom.version}</version>
         </dependency>
-	<dependency>
-	    <groupId>${pom.groupId}</groupId>
-	    <artifactId>cxf-rt-ws-rm</artifactId>
-	    <version>${pom.version}</version>
-	</dependency>
-	<dependency>
-	    <groupId>${pom.groupId}</groupId>
-	    <artifactId>cxf-rt-ws-policy</artifactId>
-	    <version>${pom.version}</version>
-	</dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>cxf-rt-ws-rm</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>cxf-rt-ws-policy</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
 
         <dependency>
             <groupId>${pom.groupId}</groupId>
             <artifactId>cxf-rt-frontend-jaxws</artifactId>
             <version>${pom.version}</version>
         </dependency>
-	<dependency>
-	    <groupId>${pom.groupId}</groupId>
-	    <artifactId>cxf-rt-frontend-js</artifactId>
-	    <version>${pom.version}</version>
-	</dependency>
-	<dependency>
-	    <groupId>${pom.groupId}</groupId>
-	    <artifactId>cxf-rt-frontend-simple</artifactId>
-	    <version>${pom.version}</version>
-	</dependency>
-
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>cxf-rt-frontend-js</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pom.groupId}</groupId>
+            <artifactId>cxf-rt-frontend-simple</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
     </dependencies>
 
     <build>
@@ -273,7 +272,7 @@
                     <archive>
                         <manifest>
                             <addClasspath>true</addClasspath>
-                        </manifest> 
+                        </manifest>
                     </archive>
                 </configuration>
             </plugin>

Modified: incubator/cxf/trunk/integration/jbi/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/integration/jbi/pom.xml?view=diff&rev=473562&r1=473561&r2=473562
==============================================================================
--- incubator/cxf/trunk/integration/jbi/pom.xml (original)
+++ incubator/cxf/trunk/integration/jbi/pom.xml Fri Nov 10 14:57:20 2006
@@ -72,6 +72,7 @@
             <groupId>servicemix</groupId>
             <artifactId>servicemix-jbi</artifactId>
             <version>2.0.2</version>
+            <scope>provided</scope>
             <exclusions>
                 <exclusion>
                     <groupId>servicemix</groupId>

Modified: incubator/cxf/trunk/rt/bindings/http/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/bindings/http/pom.xml?view=diff&rev=473562&r1=473561&r2=473562
==============================================================================
--- incubator/cxf/trunk/rt/bindings/http/pom.xml (original)
+++ incubator/cxf/trunk/rt/bindings/http/pom.xml Fri Nov 10 14:57:20 2006
@@ -38,6 +38,12 @@
             <groupId>org.codehaus.jra</groupId>
             <artifactId>jra</artifactId>
             <version>1.0-alpha-1</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>junit</groupId>
+                    <artifactId>junit</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.cxf</groupId>
@@ -81,13 +87,13 @@
         <dependency>
             <groupId>javax.mail</groupId>
             <artifactId>mail</artifactId>
-	    <scope>test</scope>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>javax.activation</groupId>
             <artifactId>activation</artifactId>
-	    <scope>test</scope>
-	</dependency>
+            <scope>test</scope>
+        </dependency>
         <dependency>
             <groupId>javax.xml.bind</groupId>
             <artifactId>jaxb-api</artifactId>
@@ -95,10 +101,10 @@
     </dependencies>
 
     <repositories>
-      <repository>
-        <id>codehaus</id>
-        <name>Codehaus</name>
-        <url>http://repository.codehaus.org</url>
-      </repository>
+        <repository>
+            <id>codehaus</id>
+            <name>Codehaus</name>
+            <url>http://repository.codehaus.org</url>
+        </repository>
     </repositories>
 </project>

Modified: incubator/cxf/trunk/rt/transports/jms/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/jms/pom.xml?view=diff&rev=473562&r1=473561&r2=473562
==============================================================================
--- incubator/cxf/trunk/rt/transports/jms/pom.xml (original)
+++ incubator/cxf/trunk/rt/transports/jms/pom.xml Fri Nov 10 14:57:20 2006
@@ -97,7 +97,7 @@
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-jms_1.1_spec</artifactId>
-            <version>1.0</version>
+            <version>1.0.1</version>
         </dependency>
         <dependency>
                 <groupId>incubator-activemq</groupId>