From commits-return-25522-apmail-directory-commits-archive=directory.apache.org@directory.apache.org Wed Apr 21 10:57:20 2010 Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 80290 invoked from network); 21 Apr 2010 10:57:20 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 21 Apr 2010 10:57:20 -0000 Received: (qmail 34477 invoked by uid 500); 21 Apr 2010 10:57:20 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 34418 invoked by uid 500); 21 Apr 2010 10:57:19 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 34411 invoked by uid 99); 21 Apr 2010 10:57:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Apr 2010 10:57:18 +0000 X-ASF-Spam-Status: No, hits=-1735.3 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Apr 2010 10:57:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 021F92388978; Wed, 21 Apr 2010 10:56:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r936253 - in /directory/installers/trunk/apacheds-noarch: apacheds.bat apacheds.sh pom.xml Date: Wed, 21 Apr 2010 10:56:35 -0000 To: commits@directory.apache.org From: kayyagari@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100421105636.021F92388978@eris.apache.org> Author: kayyagari Date: Wed Apr 21 10:56:35 2010 New Revision: 936253 URL: http://svn.apache.org/viewvc?rev=936253&view=rev Log: o added dependency on apacheds-default-config o removed the server.xml from the command line parameters, replaced it with the name of the partition's directory o updated the version number in batch file Modified: directory/installers/trunk/apacheds-noarch/apacheds.bat directory/installers/trunk/apacheds-noarch/apacheds.sh directory/installers/trunk/apacheds-noarch/pom.xml Modified: directory/installers/trunk/apacheds-noarch/apacheds.bat URL: http://svn.apache.org/viewvc/directory/installers/trunk/apacheds-noarch/apacheds.bat?rev=936253&r1=936252&r2=936253&view=diff ============================================================================== --- directory/installers/trunk/apacheds-noarch/apacheds.bat (original) +++ directory/installers/trunk/apacheds-noarch/apacheds.bat Wed Apr 21 10:56:35 2010 @@ -20,7 +20,7 @@ REM under the License. REM this script starts ApacheDS (as non-windows-service) -IF NOT exist target/apacheds-noarch-installer-1.5.6-SNAPSHOT-app.jar GOTO :MVN +IF NOT exist target/apacheds-noarch-installer-1.5.7-SNAPSHOT-app.jar GOTO :MVN echo uber jar exists GOTO :JAVA @@ -30,4 +30,4 @@ IF NOT exist target/apacheds-noarch-inst GOTO :JAVA :JAVA - java -Dlog4j.configuration="file:///%cd%/log4j.properties" -jar target/apacheds-noarch-installer-1.5.6-SNAPSHOT-app.jar target/plan/server.xml + java -Dlog4j.configuration="file:///%cd%/log4j.properties" -jar target/apacheds-noarch-installer-1.5.7-SNAPSHOT-app.jar example.com Modified: directory/installers/trunk/apacheds-noarch/apacheds.sh URL: http://svn.apache.org/viewvc/directory/installers/trunk/apacheds-noarch/apacheds.sh?rev=936253&r1=936252&r2=936253&view=diff ============================================================================== --- directory/installers/trunk/apacheds-noarch/apacheds.sh (original) +++ directory/installers/trunk/apacheds-noarch/apacheds.sh Wed Apr 21 10:56:35 2010 @@ -26,4 +26,4 @@ else mvn clean install fi -java -Dlog4j.debug -Dlog4j.configuration=file:./log4j.properties -jar $UBER_JAR target/plan/server.xml +java -Dlog4j.debug -Dlog4j.configuration=file:./log4j.properties -jar $UBER_JAR example.com Modified: directory/installers/trunk/apacheds-noarch/pom.xml URL: http://svn.apache.org/viewvc/directory/installers/trunk/apacheds-noarch/pom.xml?rev=936253&r1=936252&r2=936253&view=diff ============================================================================== --- directory/installers/trunk/apacheds-noarch/pom.xml (original) +++ directory/installers/trunk/apacheds-noarch/pom.xml Wed Apr 21 10:56:35 2010 @@ -110,5 +110,10 @@ apacheds-core-api ${version} + + org.apache.directory.server + apacheds-default-config + ${version} +