Author: luc
Date: Tue Jun 22 23:02:46 2010
New Revision: 957071
URL: http://svn.apache.org/viewvc?rev=957071&view=rev
Log:
override resources configuration from parent-pom, as they prevented the default
copying of src/main/resources to occur
Modified:
commons/proper/math/trunk/pom.xml
Modified: commons/proper/math/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/pom.xml?rev=957071&r1=957070&r2=957071&view=diff
==============================================================================
--- commons/proper/math/trunk/pom.xml (original)
+++ commons/proper/math/trunk/pom.xml Tue Jun 22 23:02:46 2010
@@ -281,6 +281,21 @@
</executions>
</plugin>
</plugins>
+ <resources>
+ <resource>
+ <directory>${basedir}</directory>
+ <targetPath>META-INF</targetPath>
+ <includes>
+ <include>NOTICE.txt</include>
+ <include>LICENSE.txt</include>
+ </includes>
+ </resource>
+ <resource>
+
<directory>${basedir}/src/main/resources/META-INF/localization</directory>
+ <targetPath>META-INF/localization</targetPath>
+ </resource>
+ </resources>
+
</build>
<reporting>
<plugins>