override resources configuration from parent-pom, as they prevented the default copying of src/main/resources to occur

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@957071 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2010-06-22 23:02:46 +00:00
parent 434de1dd39
commit e2d957da2f
1 changed files with 15 additions and 0 deletions

15
pom.xml
View File

@ -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>