Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 26830 invoked from network); 7 Jun 2007 20:57:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Jun 2007 20:57:24 -0000 Received: (qmail 91732 invoked by uid 500); 7 Jun 2007 20:57:28 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 91670 invoked by uid 500); 7 Jun 2007 20:57:27 -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 91659 invoked by uid 99); 7 Jun 2007 20:57:27 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Jun 2007 13:57:27 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Jun 2007 13:57:23 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 27B7E1A981A; Thu, 7 Jun 2007 13:57:03 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r545308 - /directory/apacheds/trunk/server-main/apacheds.bat Date: Thu, 07 Jun 2007 20:57:03 -0000 To: commits@directory.apache.org From: ckoppelt@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070607205703.27B7E1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ckoppelt Date: Thu Jun 7 13:57:02 2007 New Revision: 545308 URL: http://svn.apache.org/viewvc?view=rev&rev=545308 Log: added simple batch script for starting ApacheDS as non-windows-service Added: directory/apacheds/trunk/server-main/apacheds.bat Added: directory/apacheds/trunk/server-main/apacheds.bat URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/server-main/apacheds.bat?view=auto&rev=545308 ============================================================================== --- directory/apacheds/trunk/server-main/apacheds.bat (added) +++ directory/apacheds/trunk/server-main/apacheds.bat Thu Jun 7 13:57:02 2007 @@ -0,0 +1,15 @@ +REM this script starts ApacheDS (as non-windows-service) + +@echo off + +IF NOT exist target/apacheds-server-main-1.5.1-SNAPSHOT-app.jar GOTO :MVN + echo uber jar exists + GOTO :JAVA + +:MVN + echo uber jar not found need to build it + mvn clean assembly:assembly + GOTO :JAVA + +:JAVA + java -Dlog4j.configuration=file:///%cd%/log4j.properties -jar target/apacheds-server-main-1.5.1-SNAPSHOT-app.jar server.xml