Repository: wicket Updated Branches: refs/heads/wicket-6.x ef6288641 -> e4a7c1616
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/e4a7c161 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/e4a7c161 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/e4a7c161 Branch: refs/heads/wicket-6.x Commit: e4a7c16160d49b61b9437df09defe1e0114dc4ed Parents: ef62886 Author: Andrea Del Bene <[email protected]> Authored: Thu Mar 30 21:59:59 2017 +0200 Committer: Andrea Del Bene <[email protected]> Committed: Fri Mar 31 12:17:15 2017 +0200 ---------------------------------------------------------------------- archetypes/quickstart/pom.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/e4a7c161/archetypes/quickstart/pom.xml ---------------------------------------------------------------------- diff --git a/archetypes/quickstart/pom.xml b/archetypes/quickstart/pom.xml index e306c17..0afaaaa 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>
