Kenney Westerhof 7d5d3668fe Added testcase for MRESOURCES-18. This should really go into
the resources-plugin itself using the new framework, but 
committing anyway for future reference and regression testing.


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@398452 13f79535-47bb-0310-9956-ffa450edef68
2006-04-30 22:01:04 +00:00

35 lines
824 B
XML

<project xmlns="http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>testing</groupId>
<artifactId>maven-core-it-it0105</artifactId>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<!-- Enabling this will fix the problem for
maven-resources-plugin 2.2-20060403.015736-1 and earlier.
<filters>
<filter>filter.properties</filter>
</filters>
-->
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<properties>
<my.property>foo</my.property>
</properties>
</project>