You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by zh...@apache.org on 2005/10/13 14:30:51 UTC

svn commit: r320752 - /portals/pluto/branches/pluto-1.1/pluto-descriptor-impl/pom.xml

Author: zheng
Date: Thu Oct 13 05:30:48 2005
New Revision: 320752

URL: http://svn.apache.org/viewcvs?rev=320752&view=rev
Log:
Added testResources, updated resource includes.

Modified:
    portals/pluto/branches/pluto-1.1/pluto-descriptor-impl/pom.xml

Modified: portals/pluto/branches/pluto-1.1/pluto-descriptor-impl/pom.xml
URL: http://svn.apache.org/viewcvs/portals/pluto/branches/pluto-1.1/pluto-descriptor-impl/pom.xml?rev=320752&r1=320751&r2=320752&view=diff
==============================================================================
--- portals/pluto/branches/pluto-1.1/pluto-descriptor-impl/pom.xml (original)
+++ portals/pluto/branches/pluto-1.1/pluto-descriptor-impl/pom.xml Thu Oct 13 05:30:48 2005
@@ -1,4 +1,7 @@
-<project>
+<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">
+  
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.pluto</groupId>
   <artifactId>pluto-descriptor-impl</artifactId>
@@ -7,18 +10,31 @@
   <url>http://portals.apache.org/pluto</url>
   <parent>
     <groupId>org.apache.pluto</groupId>
-	<artifactId>pluto</artifactId>
-	<version>1.1-SNAPSHOT</version>
+    <artifactId>pluto</artifactId>
+    <version>1.1-SNAPSHOT</version>
   </parent>
+  
   <build>
     <resources>
       <resource>
         <directory>src/resources/xml</directory>
-		<includes name="*.xml"/>
-		<includes name="*.dtd"/>
-		<includes name="*.xsd"/>
+        <includes>
+          <include>**/*.xml</include>
+          <include>**/*.dtd</include>
+          <include>**/*.xsd</include>
+        </includes>
       </resource>
     </resources>
+    <testResources>
+      <testResource>
+        <directory>src/resources/xml</directory>
+        <includes>
+          <include>**/*.xml</include>
+          <include>**/*.dtd</include>
+          <include>**/*.xsd</include>
+        </includes>
+      </testResource>
+    </testResources>
     <plugins>
       <plugin>
         <artifactId>maven-assembly-plugin</artifactId>
@@ -28,43 +44,43 @@
         </configuration>
       </plugin>
     </plugins>
-
   </build>
+  
   <dependencies>
     <dependency>
       <groupId>org.apache.pluto</groupId>
-	  <artifactId>pluto-descriptor-api</artifactId>
-	  <version>${pom.version}</version>
+      <artifactId>pluto-descriptor-api</artifactId>
+      <version>${pom.version}</version>
     </dependency>
     <dependency>
       <groupId>castor</groupId>
-	  <artifactId>castor</artifactId>
-	  <version>0.9.6</version>
-	  <scope>compile</scope>
+      <artifactId>castor</artifactId>
+      <version>0.9.6</version>
+      <scope>compile</scope>
     </dependency>
-	<dependency>
+    <dependency>
       <groupId>xerces</groupId>
-	  <artifactId>xercesImpl</artifactId>
-	  <version>2.6.2</version>
-	  <scope>compile</scope>
+      <artifactId>xercesImpl</artifactId>
+      <version>2.6.2</version>
+      <scope>compile</scope>
     </dependency>
-	<dependency>
+    <dependency>
       <groupId>xerces</groupId>
-	  <artifactId>xmlParserAPIs</artifactId>
-	  <version>2.6.2</version>
-	  <scope>compile</scope>
+      <artifactId>xmlParserAPIs</artifactId>
+      <version>2.6.2</version>
+      <scope>compile</scope>
     </dependency>
-	<dependency>
+    <dependency>
       <groupId>commons-logging</groupId>
-	  <artifactId>commons-logging-api</artifactId>
-	  <version>1.0.4</version>
-	  <scope>compile</scope>
+      <artifactId>commons-logging-api</artifactId>
+      <version>1.0.4</version>
+      <scope>compile</scope>
     </dependency>
-	<dependency>
+    <dependency>
       <groupId>commons-logging</groupId>
-	  <artifactId>commons-logging</artifactId>
-	  <version>1.0.4</version>
-	  <scope>test</scope>
+      <artifactId>commons-logging</artifactId>
+      <version>1.0.4</version>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>junit</groupId>