|
|
Author: akarasulu
Date: Sat Sep 1 02:57:02 2007
New Revision: 571756
URL: http://svn.apache.org/viewvc?rev=571756&view=rev
Log:
forgot these changes
Modified:
directory/installers/trunk/apacheds-noarch/apacheds.bat
directory/installers/trunk/apacheds-noarch/apacheds.sh
Modified: directory/installers/trunk/apacheds-noarch/apacheds.bat
URL:
http://svn.apache.org/viewvc/directory/installers/trunk/apacheds-noarch/apacheds.bat?rev=571756&r1=571755&r2=571756&view=diff
==============================================================================
--- directory/installers/trunk/apacheds-noarch/apacheds.bat (original)
+++ directory/installers/trunk/apacheds-noarch/apacheds.bat Sat Sep 1 02:57:02
2007
@@ -3,7 +3,7 @@
REM this script starts ApacheDS (as non-windows-service)
-IF NOT exist target/apacheds-server-main-1.5.1-SNAPSHOT-app.jar GOTO :MVN
+IF NOT exist target/apacheds-noarch-installer-1.5.1-app.jar GOTO :MVN
echo uber jar exists
GOTO :JAVA
@@ -13,4 +13,4 @@
GOTO :JAVA
:JAVA
- java -Dlog4j.configuration="file:///%cd%/log4j.properties" -jar
target/apacheds-server-main-1.5.1-SNAPSHOT-app.jar server.xml
+ java -Dlog4j.configuration="file:///%cd%/log4j.properties" -jar
target/apacheds-noarch-installer-1.5.1-app.jar server.xml
Modified: directory/installers/trunk/apacheds-noarch/apacheds.sh
URL:
http://svn.apache.org/viewvc/directory/installers/trunk/apacheds-noarch/apacheds.sh?rev=571756&r1=571755&r2=571756&view=diff
==============================================================================
--- directory/installers/trunk/apacheds-noarch/apacheds.sh (original)
+++ directory/installers/trunk/apacheds-noarch/apacheds.sh Sat Sep 1 02:57:02
2007
@@ -1,9 +1,9 @@
#!/bin/sh
-if [ -e target/apacheds-server-main-1.5.1-SNAPSHOT-app.jar ] ; then
+if [ -e target/apacheds-noarch-installer-1.5.1-app.jar ] ; then
echo uber jar exists
else
echo uber jar not found need to build it
mvn clean assembly:assembly
fi
-java -Dlog4j.debug -Dlog4j.configuration=file:./log4j.properties -jar
target/apacheds-server-main-1.5.1-SNAPSHOT-app.jar server.xml
+java -Dlog4j.debug -Dlog4j.configuration=file:./log4j.properties -jar
target/apacheds-noarch-installer-1.5.1-app.jar server.xml
|
|