[MNG-2478] add "resources-filtered" filtered resource directories to super POM

This commit is contained in:
Christian Schulte 2016-02-24 21:19:05 +01:00 committed by Michael Osipov
parent ecf8573602
commit be16fc66b9
1 changed files with 8 additions and 0 deletions

View File

@ -62,11 +62,19 @@ under the License.
<resource> <resource>
<directory>${project.basedir}/src/main/resources</directory> <directory>${project.basedir}/src/main/resources</directory>
</resource> </resource>
<resource>
<directory>${project.basedir}/src/main/resources-filtered</directory>
<filtering>true</filtering>
</resource>
</resources> </resources>
<testResources> <testResources>
<testResource> <testResource>
<directory>${project.basedir}/src/test/resources</directory> <directory>${project.basedir}/src/test/resources</directory>
</testResource> </testResource>
<testResource>
<directory>${project.basedir}/src/test/resources-filtered</directory>
<filtering>true</filtering>
</testResource>
</testResources> </testResources>
<pluginManagement> <pluginManagement>
<!-- NOTE: These plugins will be removed from future versions of the super POM --> <!-- NOTE: These plugins will be removed from future versions of the super POM -->