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

[maven-filtering] branch MSHARED-664 created (now a0ac932)

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

rfscholte pushed a change to branch MSHARED-664
in repository https://gitbox.apache.org/repos/asf/maven-filtering.git.


      at a0ac932  MSHARED-664: add ico to non-filtered extensions list

This branch includes the following new commits:

     new a0ac932  MSHARED-664: add ico to non-filtered extensions list

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-filtering] 01/01: MSHARED-664: add ico to non-filtered extensions list

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

rfscholte pushed a commit to branch MSHARED-664
in repository https://gitbox.apache.org/repos/asf/maven-filtering.git

commit a0ac93245327663cd6c66f9efa746ccddf134c19
Author: Ben Tatham <be...@nanometrics.ca>
AuthorDate: Fri Oct 27 16:36:37 2017 -0400

    MSHARED-664: add ico to non-filtered extensions list
---
 .../apache/maven/shared/filtering/DefaultMavenResourcesFiltering.java   | 1 +
 .../java/org/apache/maven/shared/filtering/MavenResourcesFiltering.java | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/maven/shared/filtering/DefaultMavenResourcesFiltering.java b/src/main/java/org/apache/maven/shared/filtering/DefaultMavenResourcesFiltering.java
index dbbbc1d..bcba3e5 100644
--- a/src/main/java/org/apache/maven/shared/filtering/DefaultMavenResourcesFiltering.java
+++ b/src/main/java/org/apache/maven/shared/filtering/DefaultMavenResourcesFiltering.java
@@ -77,6 +77,7 @@ public class DefaultMavenResourcesFiltering
         this.defaultNonFilteredFileExtensions.add( "gif" );
         this.defaultNonFilteredFileExtensions.add( "bmp" );
         this.defaultNonFilteredFileExtensions.add( "png" );
+        this.defaultNonFilteredFileExtensions.add( "ico" );
     }
 
     /** {@inheritDoc} */
diff --git a/src/main/java/org/apache/maven/shared/filtering/MavenResourcesFiltering.java b/src/main/java/org/apache/maven/shared/filtering/MavenResourcesFiltering.java
index d758170..f92996d 100644
--- a/src/main/java/org/apache/maven/shared/filtering/MavenResourcesFiltering.java
+++ b/src/main/java/org/apache/maven/shared/filtering/MavenResourcesFiltering.java
@@ -28,7 +28,7 @@ public interface MavenResourcesFiltering
 {
 
     /**
-     * return the List of the non filtered extensions (jpg,jpeg,gif,bmp,png)
+     * return the List of the non filtered extensions (jpg,jpeg,gif,bmp,png,ico)
      *
      * @return {@link List} of {@link String}
      */