You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ad...@apache.org on 2017/03/30 20:00:09 UTC

wicket git commit: Added resource filtering to avoid keystore file corruption

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 <ad...@apache.org>
Authored: Thu Mar 30 21:59:59 2017 +0200
Committer: Andrea Del Bene <ad...@apache.org>
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>