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/10/16 20:01:02 UTC

svn commit: r464593 - /incubator/cxf/trunk/common/xsd/pom.xml

Author: dkulp
Date: Mon Oct 16 11:01:01 2006
New Revision: 464593

URL: http://svn.apache.org/viewvc?view=rev&rev=464593
Log:
Mark maven direct dependencies as "provided" to avoid packaging unneeded things.


Modified:
    incubator/cxf/trunk/common/xsd/pom.xml

Modified: incubator/cxf/trunk/common/xsd/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/common/xsd/pom.xml?view=diff&rev=464593&r1=464592&r2=464593
==============================================================================
--- incubator/cxf/trunk/common/xsd/pom.xml (original)
+++ incubator/cxf/trunk/common/xsd/pom.xml Mon Oct 16 11:01:01 2006
@@ -17,7 +17,7 @@
     under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-	 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.cxf</groupId>
     <artifactId>cxf-common-xsd</artifactId>
@@ -28,84 +28,84 @@
 
 
     <parent>
-	<groupId>org.apache.cxf</groupId>
-	<artifactId>cxf-common</artifactId>
-	<version>2.0-incubator-M1-SNAPSHOT</version>
+        <groupId>org.apache.cxf</groupId>
+        <artifactId>cxf-common</artifactId>
+        <version>2.0-incubator-M1-SNAPSHOT</version>
     </parent>
 
     <properties>
-	<topDirectoryLocation>../../</topDirectoryLocation>
-	<java.source.version>1.4</java.source.version>
+        <topDirectoryLocation>../../</topDirectoryLocation>
+        <java.source.version>1.4</java.source.version>
     </properties>
 
 
     <dependencies>
 	
-	<dependency>
-	    <groupId>junit</groupId>
-	    <artifactId>junit</artifactId>
-	    <version>3.8.1</version>
-	    <scope>test</scope>
-	</dependency>
-
-	<dependency>
-	    <groupId>org.apache.maven</groupId>
-	    <artifactId>maven-plugin-api</artifactId>
-	    <version>2.0.1</version>
-	    <scope>compile</scope>
-	    <exclusions>
-		<exclusion>
-		    <groupId>junit</groupId>
-		    <artifactId>junit</artifactId>
-		</exclusion>
-	    </exclusions>
-	</dependency>
-
-	<dependency>
-	    <groupId>org.apache.maven</groupId>
-	    <artifactId>maven-project</artifactId>
-	    <version>2.0.1</version>
-	    <scope>compile</scope>
-	    <exclusions>
-		<exclusion>
-		    <groupId>junit</groupId>
-		    <artifactId>junit</artifactId>
-		</exclusion>
-	    </exclusions>
-	</dependency>
-
-	<dependency>
-	    <groupId>org.apache.cxf</groupId>
-	    <artifactId>cxf-common-utilities</artifactId>
-	    <version>${project.version}</version>
-	</dependency>
-
-	<dependency>
-	    <groupId>ant</groupId>
-	    <artifactId>ant</artifactId>
-	    <version>1.6.5</version>
-	</dependency>
-
-	<dependency>
-	    <groupId>ant</groupId>
-	    <artifactId>ant-nodeps</artifactId>
-	    <version>1.6.5</version>
-	</dependency>
 
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-plugin-api</artifactId>
+            <version>2.0.1</version>
+            <scope>provided</scope>
+            <exclusions>
+            <exclusion>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+            </exclusion>
+            </exclusions>
+        </dependency>
+    
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-project</artifactId>
+            <version>2.0.1</version>
+            <scope>provided</scope>
+            <exclusions>
+            <exclusion>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+            </exclusion>
+            </exclusions>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.cxf</groupId>
+            <artifactId>cxf-common-utilities</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+
+        <dependency>
+            <groupId>ant</groupId>
+            <artifactId>ant</artifactId>
+            <version>1.6.5</version>
+        </dependency>
+
+        <dependency>
+            <groupId>ant</groupId>
+            <artifactId>ant-nodeps</artifactId>
+            <version>1.6.5</version>
+        </dependency>
     </dependencies>
 
 
     <build>
-	<plugins>
-	    <plugin>
-		<groupId>org.apache.maven.plugins</groupId>
-		<artifactId>maven-compiler-plugin</artifactId>
-		<configuration>
-		    <source>1.4</source>
-		    <target>1.4</target>
-		</configuration>
-	    </plugin>
-	</plugins>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.4</source>
+                    <target>1.4</target>
+                </configuration>
+            </plugin>
+        </plugins>
     </build>
 
 </project>