You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2020/04/27 20:14:38 UTC

[maven] branch MNG-2478 created (now be16fc6)

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

michaelo pushed a change to branch MNG-2478
in repository https://gitbox.apache.org/repos/asf/maven.git.


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

This branch includes the following new commits:

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

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch MNG-2478
in repository https://gitbox.apache.org/repos/asf/maven.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 -->