Repository: wicket
Updated Branches:
  refs/heads/wicket-7.x 84d557ab1 -> b0bec66f7


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/b0bec66f
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/b0bec66f
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/b0bec66f

Branch: refs/heads/wicket-7.x
Commit: b0bec66f72218238dae17f6cf61bf84a21232727
Parents: 84d557a
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 22:08:53 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/wicket/blob/b0bec66f/archetypes/quickstart/pom.xml
----------------------------------------------------------------------
diff --git a/archetypes/quickstart/pom.xml b/archetypes/quickstart/pom.xml
index 3ce6804..1d40655 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