You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by eo...@apache.org on 2020/05/10 14:07:54 UTC

[maven-studies] 10/23: [MNG-2478] add "resources-filtered" filtered resource directories to super POM

This is an automated email from the ASF dual-hosted git repository.

eolivelli pushed a commit to branch maven-metrics
in repository https://gitbox.apache.org/repos/asf/maven-studies.git

commit be16fc66b9783ca8ae6ca441fd5ef8044d39e4b1
Author: Christian Schulte <sc...@apache.org>
AuthorDate: Wed Feb 24 21:19:05 2016 +0100

    [MNG-2478] add "resources-filtered" filtered resource directories to super POM
---
 .../src/main/resources/org/apache/maven/model/pom-4.0.0.xml       | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml b/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
index b19a7d7..99573d8 100644
--- a/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
+++ b/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
@@ -62,11 +62,19 @@ under the License.
       <resource>
         <directory>${project.basedir}/src/main/resources</directory>
       </resource>
+      <resource>
+        <directory>${project.basedir}/src/main/resources-filtered</directory>
+        <filtering>true</filtering>
+      </resource>
     </resources>
     <testResources>
       <testResource>
         <directory>${project.basedir}/src/test/resources</directory>
       </testResource>
+      <testResource>
+        <directory>${project.basedir}/src/test/resources-filtered</directory>
+        <filtering>true</filtering>
+      </testResource>
     </testResources>
     <pluginManagement>
       <!-- NOTE: These plugins will be removed from future versions of the super POM -->