You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2008/03/19 21:49:25 UTC

svn commit: r639007 - in /directory/project/branches/bigbang: pom.xml resources/superclean.sh

Author: akarasulu
Date: Wed Mar 19 13:49:24 2008
New Revision: 639007

URL: http://svn.apache.org/viewvc?rev=639007&view=rev
Log:
Adding zero conf StartTLS extended operation and zero conf LDAPS feature ...
 
 o Uses DIT for KeyStore
   - special schema elements added to apache schema to specifically handle the
     server keys and certificates which are assigned to the administrative user
   - special KeyStore implementation used
 o Generates key on first start to automatically enable StartTLS with zero conf
 o Uses BouncyCastle to generate self signed certificate on first start
 o LDAPS feature modified to use same DIT based KeyStore and the same self
   signed certificate and RSA keys generated or replaced by administrator
 o Reduced configuration without need to include KeyStore file path and passwd
 o Administrators can now update the keys and certificates directly from the DIT


Modified:
    directory/project/branches/bigbang/pom.xml
    directory/project/branches/bigbang/resources/superclean.sh

Modified: directory/project/branches/bigbang/pom.xml
URL: http://svn.apache.org/viewvc/directory/project/branches/bigbang/pom.xml?rev=639007&r1=639006&r2=639007&view=diff
==============================================================================
--- directory/project/branches/bigbang/pom.xml (original)
+++ directory/project/branches/bigbang/pom.xml Wed Mar 19 13:49:24 2008
@@ -77,6 +77,10 @@
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-eclipse-plugin</artifactId>
           <version>2.4</version>
+          <configuration>
+            <downloadSources>true</downloadSources>
+            <downloadJavadocs>true</downloadJavadocs>
+          </configuration>
         </plugin>
 
         <plugin>

Modified: directory/project/branches/bigbang/resources/superclean.sh
URL: http://svn.apache.org/viewvc/directory/project/branches/bigbang/resources/superclean.sh?rev=639007&r1=639006&r2=639007&view=diff
==============================================================================
--- directory/project/branches/bigbang/resources/superclean.sh (original)
+++ directory/project/branches/bigbang/resources/superclean.sh Wed Mar 19 13:49:24 2008
@@ -4,10 +4,11 @@
 # with the command 'resources/superclean.sh'
 
 find . -type d -name target | xargs rm -rf
+OS=`uname`
 
-if [ `uname` == "CYGWIN_NT-5.1" ]; then
-  rm -rf $(cygpath "$HOME_PATH"/.m2/repository/org/apache/{directory});
+if [ "$OS" = "CYGWIN_NT-5.1" ]; then
+  rm -rf $(cygpath "$HOME_PATH"/.m2/repository/org/apache/directory);
 else
-  rm -rf ~/.m2/repository/org/apache/{directory}
+  rm -rf ~/.m2/repository/org/apache/directory
 fi