Repository: wicket
Updated Branches:
  refs/heads/master 16c0520c0 -> 7d7c3d928


Added resource filtering to avoid keystore file corruption


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/7d7c3d92
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/7d7c3d92
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/7d7c3d92

Branch: refs/heads/master
Commit: 7d7c3d92812cfa05e71ba507f7125c3f81cf35c4
Parents: 16c0520
Author: Andrea Del Bene <[email protected]>
Authored: Thu Mar 30 21:59:59 2017 +0200
Committer: Andrea Del Bene <[email protected]>
Committed: Thu Mar 30 21:59:59 2017 +0200

----------------------------------------------------------------------
 archetypes/quickstart/pom.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/7d7c3d92/archetypes/quickstart/pom.xml
----------------------------------------------------------------------
diff --git a/archetypes/quickstart/pom.xml b/archetypes/quickstart/pom.xml
index 831aff5..09ffb23 100644
--- a/archetypes/quickstart/pom.xml
+++ b/archetypes/quickstart/pom.xml
@@ -31,8 +31,15 @@
                        <resource>
                                <filtering>true</filtering>
                                
<directory>${project.basedir}/src/main/resources</directory>
+                               <excludes>
+                                       <exclude>**/keystore</exclude>
+                               </excludes>
+                       </resource>
+                       <resource>
+                               <filtering>false</filtering>
+                               
<directory>${project.basedir}/src/main/resources</directory>
                                <includes>
-                                       <include>**/*</include>
+                                       <include>**/keystore</include>
                                </includes>
                        </resource>
                </resources>

Reply via email to