You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2006/08/19 23:45:31 UTC

svn commit: r432883 - /geronimo/genesis/trunk/config/project-config/pom.xml

Author: jdillon
Date: Sat Aug 19 14:45:30 2006
New Revision: 432883

URL: http://svn.apache.org/viewvc?rev=432883&view=rev
Log:
Added custom build elements that represent the m2 std + including LICENSE.txt and NOTICE.txt

Modified:
    geronimo/genesis/trunk/config/project-config/pom.xml

Modified: geronimo/genesis/trunk/config/project-config/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/config/project-config/pom.xml?rev=432883&r1=432882&r2=432883&view=diff
==============================================================================
--- geronimo/genesis/trunk/config/project-config/pom.xml (original)
+++ geronimo/genesis/trunk/config/project-config/pom.xml Sat Aug 19 14:45:30 2006
@@ -160,6 +160,33 @@
     <build>
         <defaultGoal>install</defaultGoal>
         
+        <sourceDirectory>${pom.basedir}/src/main/java</sourceDirectory>
+        <testSourceDirectory>${pom.basedir}/src/test/java</testSourceDirectory>
+        
+        <resources>
+            <resource>
+                <directory>${pom.basedir}</directory>
+                <targetPath>META-INF</targetPath>
+                <includes>
+                    <include>LICENSE.txt</include>
+                    <include>NOTICE.txt</include>
+                </includes>
+            </resource>
+
+            <resource>
+                <directory>${pom.basedir}/src/main/resources</directory>
+            </resource>
+        </resources>
+
+        <testResources>
+            <testResource>
+                <directory>${pom.basedir}/src/test/resources</directory>
+            </testResource>
+            <testResource>
+                <directory>${pom.basedir}/src/test/data</directory>
+            </testResource>
+        </testResources>
+        
         <extensions>
             <extension>
                 <groupId>org.apache.geronimo.genesis.config</groupId>