merging in changes from bigbang before replacing bigbang with private branch

git-svn-id: https://svn.apache.org/repos/asf/directory/sandbox/akarasulu/bigbang/project@655113 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/LAST_BIG_BANG_MERGE b/LAST_BIG_BANG_MERGE
new file mode 100644
index 0000000..2cfa6fd
--- /dev/null
+++ b/LAST_BIG_BANG_MERGE
@@ -0,0 +1,14 @@
+$Rev$
+$Date$
+
+This file shows the last time I merged from the big bang branch here as a commit
+number:
+
+   https://svn.apache.org/repos/asf/directory/project/branches/bigbang/
+
+
+Sat May 10 11:32:48 EDT 2008
+----------------------------
+svn merge -r 6489222:655112 https://svn.apache.org/repos/asf/directory/daemon/branches/bigbang .
+
+
diff --git a/pom.xml b/pom.xml
index 3c9c307..4125369 100644
--- a/pom.xml
+++ b/pom.xml
@@ -32,7 +32,7 @@
   <artifactId>project</artifactId>
   <packaging>pom</packaging>
   <name>Apache Directory Project</name>
-  <version>11-SNAPSHOT</version>
+  <version>12-SNAPSHOT</version>
 
   <ciManagement>
     <system>continuum</system>
diff --git a/resources/gpg-sign-all b/resources/gpg-sign-all
new file mode 100755
index 0000000..8dc835a
--- /dev/null
+++ b/resources/gpg-sign-all
@@ -0,0 +1,67 @@
+#!/bin/sh
+
+DEFAULT_KEY="akarasulu@apache.org"
+
+while :
+do
+ clear
+ echo "S E L E C T   D E F A U L T   K E Y"
+ echo '-----------------------------------'
+ echo "1. akarasulu@apache.org"
+ echo "2. elecharny@apache.org"
+ echo "3. pamarcelot@apache.org"
+ echo "4. Exit"
+ echo -n 'Please enter option [1 - 4] > '
+ read opt
+case $opt in
+1) echo "Using DEFAULT_KEY=akarasulu@apache.org";
+   DEFAULT_KEY='akarasulu@apache.org';
+   break;
+;;
+2) echo "Using DEFAULT_KEY=elecharny@apache.org";
+   DEFAULT_KEY='elecharny@apache.org';
+   break;
+;;
+3) echo "Using DEFAULT_KEY=pamarcelot@apache.org";
+   DEFAULT_KEY='pamarcelot@apache.org';
+   break;
+;;
+4) echo "Bye $USER";
+   exit 1;;
+*) echo "$opt is an invaild option. Please select option between 1-4 only";
+    echo "Press [enter] key to continue. . .";
+    read enterKey;;
+esac
+done
+
+echo -n "PGP Key Password: "
+stty -echo
+read PASSWORD
+stty echo
+echo ""
+
+for FILE in $(find . -not '(' -name "*.md5" -or -name "*.sha1" -or -name "*.asc" ')' -and -type f) ; do
+        echo -n "Signing: $FILE ... "
+
+        if [ ! -f $FILE.md5 ]; then
+               md5sum "$FILE" | cut "-d " -f1 > "$FILE.md5"
+        else
+               echo "Skipping $FILE.md5"
+        fi
+
+        if [ ! -f $FILE.sha1 ]; then
+                sha1sum "$FILE" | cut "-d " -f1 > "$FILE.sha1"
+        else
+                echo "Skipping $FILE.sha1"
+        fi
+
+        if [ ! -f $FILE.asc ]; then
+                echo "$PASSWORD" | gpg --default-key "$DEFAULT_KEY" --detach-sign --armor --no-tty --yes --passphrase-fd 0 "$FILE" && echo done.
+        else
+                echo "Skipping $FILE.asc"
+        fi
+done
+
+echo -n Updating permission...
+chmod g+w -R . && echo done.
+