Author: jrthomerson
Date: Tue May 5 01:40:21 2009
New Revision: 771520
URL: http://svn.apache.org/viewvc?rev=771520&view=rev
Log:
fix release.sh to work with my long and complicated passphrase
Modified:
wicket/sandbox/jthomerson/1.4-rc4/NOTICE
wicket/sandbox/jthomerson/1.4-rc4/release.sh
Modified: wicket/sandbox/jthomerson/1.4-rc4/NOTICE
URL:
http://svn.apache.org/viewvc/wicket/sandbox/jthomerson/1.4-rc4/NOTICE?rev=771520&r1=771519&r2=771520&view=diff
==============================================================================
--- wicket/sandbox/jthomerson/1.4-rc4/NOTICE (original)
+++ wicket/sandbox/jthomerson/1.4-rc4/NOTICE Tue May 5 01:40:21 2009
@@ -12,6 +12,15 @@
AUTOMATICALLY INCLUDE THE NOTICE IN THIS FILE.
---------------------------------------------------------------------------
+src/./wicket-quickstart/NOTICE
+---------------------------------------------------------------------------
+ Apache Wicket
+ Copyright 2007 The Apache Software Foundation
+
+ This product includes software developed at
+ The Apache Software Foundation (http://www.apache.org/).
+
+---------------------------------------------------------------------------
src/./wicket
---------------------------------------------------------------------------
Apache Wicket
@@ -76,6 +85,15 @@
[1]:
http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/
---------------------------------------------------------------------------
+src/./wicket-jmx
+---------------------------------------------------------------------------
+ Apache Wicket
+ Copyright 2007 The Apache Software Foundation
+
+ This product includes software developed at
+ The Apache Software Foundation (http://www.apache.org/).
+
+---------------------------------------------------------------------------
src/./wicket-auth-roles
---------------------------------------------------------------------------
Apache Wicket Auth Roles
@@ -85,6 +103,39 @@
The Apache Software Foundation (http://www.apache.org/).
---------------------------------------------------------------------------
+src/./wicket-extensions
+---------------------------------------------------------------------------
+ Apache Wicket Extensions
+ Copyright 2007 The Apache Software Foundation
+
+ This product includes software developed at
+ The Apache Software Foundation (http://www.apache.org/).
+
+ Contains software developed in Apache Turbine, released
+ under the Apache Software License, Version 2.0.
+ (c) 2001-2005
+
+---------------------------------------------------------------------------
+src/./wicket-guice
+---------------------------------------------------------------------------
+ Apache Wicket
+ Copyright 2007 The Apache Software Foundation
+
+ This product includes software developed at
+ The Apache Software Foundation (http://www.apache.org/).
+
+ This product includes Guice, developed at Google, and licensed
+ under the Apache License 2.0. (http://code.google.com/p/google-guice/).
+---------------------------------------------------------------------------
+src/./wicket-ioc
+---------------------------------------------------------------------------
+ Apache Wicket
+ Copyright 2007 The Apache Software Foundation
+
+ This product includes software developed at
+ The Apache Software Foundation (http://www.apache.org/).
+
+---------------------------------------------------------------------------
src/./wicket-datetime
---------------------------------------------------------------------------
Apache Wicket Date Time
@@ -145,48 +196,6 @@
which is released under CDDL 1.0 license
(http://www.opensource.org/licenses/cddl1.php).
---------------------------------------------------------------------------
-src/./wicket-extensions
----------------------------------------------------------------------------
- Apache Wicket Extensions
- Copyright 2007 The Apache Software Foundation
-
- This product includes software developed at
- The Apache Software Foundation (http://www.apache.org/).
-
- Contains software developed in Apache Turbine, released
- under the Apache Software License, Version 2.0.
- (c) 2001-2005
-
----------------------------------------------------------------------------
-src/./wicket-guice
----------------------------------------------------------------------------
- Apache Wicket
- Copyright 2007 The Apache Software Foundation
-
- This product includes software developed at
- The Apache Software Foundation (http://www.apache.org/).
-
- This product includes Guice, developed at Google, and licensed
- under the Apache License 2.0. (http://code.google.com/p/google-guice/).
----------------------------------------------------------------------------
-src/./wicket-ioc
----------------------------------------------------------------------------
- Apache Wicket
- Copyright 2007 The Apache Software Foundation
-
- This product includes software developed at
- The Apache Software Foundation (http://www.apache.org/).
-
----------------------------------------------------------------------------
-src/./wicket-jmx
----------------------------------------------------------------------------
- Apache Wicket
- Copyright 2007 The Apache Software Foundation
-
- This product includes software developed at
- The Apache Software Foundation (http://www.apache.org/).
-
----------------------------------------------------------------------------
src/./wicket-objectssizeof-agent
---------------------------------------------------------------------------
Apache Wicket
@@ -197,15 +206,6 @@
---------------------------------------------------------------------------
-src/./wicket-quickstart/NOTICE
----------------------------------------------------------------------------
- Apache Wicket
- Copyright 2007 The Apache Software Foundation
-
- This product includes software developed at
- The Apache Software Foundation (http://www.apache.org/).
-
----------------------------------------------------------------------------
src/./wicket-spring
---------------------------------------------------------------------------
Apache Wicket
Modified: wicket/sandbox/jthomerson/1.4-rc4/release.sh
URL:
http://svn.apache.org/viewvc/wicket/sandbox/jthomerson/1.4-rc4/release.sh?rev=771520&r1=771519&r2=771520&view=diff
==============================================================================
--- wicket/sandbox/jthomerson/1.4-rc4/release.sh (original)
+++ wicket/sandbox/jthomerson/1.4-rc4/release.sh Tue May 5 01:40:21 2009
@@ -62,14 +62,14 @@
# package and assemble the release
echo "Package and assemble the release"
-mvn5 -ff -Dgpg.passphrase=$passphrase -Prelease deploy javadoc:javadoc
assembly:attached $1
+mvn5 -ff -Dgpg.passphrase="$passphrase" -Prelease deploy javadoc:javadoc
assembly:attached $1
filename=`ls target/dist/apache-wicket*gz`
gpg --print-md MD5 $filename > $filename.md5
gpg --print-md SHA1 $filename > $filename.sha
-echo $passphrase | gpg --passphrase-fd 0 --armor --output $filename.asc
--detach-sig $filename
+echo "$passphrase" | gpg --passphrase-fd 0 --armor --output $filename.asc
--detach-sig $filename
filename=`ls target/dist/apache-wicket*zip`
gpg --print-md MD5 $filename > $filename.md5
gpg --print-md SHA1 $filename > $filename.sha
-echo $passphrase | gpg --passphrase-fd 0 --armor --output $filename.asc
--detach-sig $filename
+echo "$passphrase" | gpg --passphrase-fd 0 --armor --output $filename.asc
--detach-sig $filename