You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by da...@apache.org on 2016/07/17 08:53:43 UTC

[2/2] wicket git commit: Don't sign and package the (examples) war in release

Don't sign and package the (examples) war in release


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

Branch: refs/heads/wicket-6.x
Commit: 2785609b6fd0a2094e63f596cb1c4243cefb519d
Parents: 0fcdbf4
Author: Martijn Dashorst <da...@apache.org>
Authored: Sun Jul 17 10:48:32 2016 +0200
Committer: Martijn Dashorst <da...@apache.org>
Committed: Sun Jul 17 10:53:33 2016 +0200

----------------------------------------------------------------------
 release.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/2785609b/release.sh
----------------------------------------------------------------------
diff --git a/release.sh b/release.sh
index b4e96eb..687d7f6 100755
--- a/release.sh
+++ b/release.sh
@@ -406,7 +406,7 @@ echo "# Release configuration for Wicket-$version
 scm.tag=${tag}
 " > release.properties
 
-./build-versions.py >> release.properties
+./build-versions.py $version $next_version >> release.properties
 
 echo "Contents of the release properties generated for Maven:
 -------------------------------------------------------------------------------
@@ -518,8 +518,8 @@ gpg --print-md MD5  target/dist/apache-wicket-$version.zip > target/dist/apache-
 echo "Create and sign the binaries"
 mkdir target/apache-wicket-$version-bin
 pushd target/apache-wicket-$version-bin
-find ../checkout ! \( -type d -name "WEB-INF" -prune \) -regex ".*wicket-[^/]*.[jw]ar" ! -name "*-sources*" ! -name "*-javadoc*" ! -name "*wicket-archetype-quickstart*" ! -name "wicket-common-tests*"  -type f -exec cp {} . \;
-find ../checkout ! \( -type d -name "WEB-INF" -prune \) -regex ".*wicket-[^/]*.[jw]ar\.asc" ! -name "*-sources*" ! -name "*-javadoc*" ! -name "*wicket-archetype-quickstart*" ! -name "wicket-common-tests*"  -type f -exec cp {} . \;
+find ../checkout ! \( -type d -name "WEB-INF" -prune \) -regex ".*wicket-[^/]*.[j]ar" ! -name "*-sources*" ! -name "*-javadoc*" ! -name "*wicket-archetype-quickstart*" ! -name "wicket-common-tests*"  -type f -exec cp {} . \;
+find ../checkout ! \( -type d -name "WEB-INF" -prune \) -regex ".*wicket-[^/]*.[j]ar\.asc" ! -name "*-sources*" ! -name "*-javadoc*" ! -name "*wicket-archetype-quickstart*" ! -name "wicket-common-tests*"  -type f -exec cp {} . \;
 cp ../../LICENSE .
 cp ../../README .
 cp ../../NOTICE .