[MOBY-guts] biomoby commit

Martin Senger senger at pub.open-bio.org
Sun Nov 20 12:30:50 UTC 2005


senger
Sun Nov 20 07:30:50 EST 2005
Update of /home/repository/moby/moby-live/Java
In directory pub.open-bio.org:/tmp/cvs-serv4966

Modified Files:
	.cvsignore.template build-dev.bat build.bat 
Log Message:


moby-live/Java .cvsignore.template,1.3,1.4 build-dev.bat,1.4,1.5 build.bat,1.4,1.5
===================================================================
RCS file: /home/repository/moby/moby-live/Java/.cvsignore.template,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- /home/repository/moby/moby-live/Java/.cvsignore.template	2005/08/31 00:48:39	1.3
+++ /home/repository/moby/moby-live/Java/.cvsignore.template	2005/11/20 12:30:50	1.4
@@ -3,3 +3,4 @@
 .classpath
 build
 build.properties
+log4j.properties

===================================================================
RCS file: /home/repository/moby/moby-live/Java/build-dev.bat,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- /home/repository/moby/moby-live/Java/build-dev.bat	2005/05/19 10:56:05	1.4
+++ /home/repository/moby/moby-live/Java/build-dev.bat	2005/11/20 12:30:50	1.5
@@ -1,38 +1,38 @@
- at echo off
-REM $Id$
-
-REM See comments in build-dev.sh.
-REM ALSO: I do not understand Windows and do not develop on this platform.
-REM       Therefore, any improvements of this script are welcome.
-REM       Please do not hesitate and contact Martin Senger <senger at ebi.ac.uk>.
-
-REM Set-up JAVA_HOME
-REM ----------------
-
-if NOT "%JAVA_HOME%"=="" goto javadone
-echo =======================================================
-echo Setup the JAVA_HOME environment variable.
-echo Hint (for XP): Click Start -- Control Panel -- System.
-echo Then click Advanced, then click "Environment Variables".
-echo ========================================================
-goto end
-:javadone
-
-REM Set-up ANT_HOME
-REM ---------------
-set ANT_HOME=.\lib\ant_home
-
-REM Put Ant libraries in CLASSPATH
-REM ------------------------------
-set CP=
-for %%i in (%ANT_HOME%\lib\*.jar) do call cp.bat %%i
-set CP=%JAVA_HOME%\lib\tools.jar;%CP%
-
-REM Call Ant to do the building
-REM ---------------------------
-set JAVA=%JAVA_HOME%\bin\java
-%JAVA% -classpath %CP% -Dant.home=%ANT_HOME% org.apache.tools.ant.Main %1 %2 %3 %4 %5 %6 %7 %8 %9 -buildfile build.xml
-
-:end
-
-
+ at echo off
+REM $Id$
+
+REM See comments in build-dev.sh.
+REM ALSO: I do not understand Windows and do not develop on this platform.
+REM       Therefore, any improvements of this script are welcome.
+REM       Please do not hesitate and contact Martin Senger <senger at ebi.ac.uk>.
+
+REM Set-up JAVA_HOME
+REM ----------------
+
+if NOT "%JAVA_HOME%"=="" goto javadone
+echo =======================================================
+echo Setup the JAVA_HOME environment variable.
+echo Hint (for XP): Click Start -- Control Panel -- System.
+echo Then click Advanced, then click "Environment Variables".
+echo ========================================================
+goto end
+:javadone
+
+REM Set-up ANT_HOME
+REM ---------------
+set ANT_HOME=.\lib\ant_home
+
+REM Put Ant libraries in CLASSPATH
+REM ------------------------------
+set CP=
+for %%i in (%ANT_HOME%\lib\*.jar) do call cp.bat %%i
+set CP=%JAVA_HOME%\lib\tools.jar;%CP%
+
+REM Call Ant to do the building
+REM ---------------------------
+set "JAVA=%JAVA_HOME%\bin\java"
+"%JAVA%" -classpath "%CP%" -Dant.home=%ANT_HOME% org.apache.tools.ant.Main %1 %2 %3 %4 %5 %6 %7 %8 %9 -buildfile build.xml
+
+:end
+
+

===================================================================
RCS file: /home/repository/moby/moby-live/Java/build.bat,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- /home/repository/moby/moby-live/Java/build.bat	2005/05/19 10:56:05	1.4
+++ /home/repository/moby/moby-live/Java/build.bat	2005/11/20 12:30:50	1.5
@@ -1,38 +1,38 @@
- at echo off
-REM  $Id$
-
-REM See comments in build.sh.
-REM ALSO: I do not understand Windows and do not develop on this platform.
-REM       Therefore, any improvements of this script are welcome.
-REM       Please do not hesitate and contact Martin Senger <senger at ebi.ac.uk>.
-
-REM Set-up JAVA_HOME
-REM ----------------
-REM Example: set JAVA_HOME=\development\jdk
-
-if NOT "%JAVA_HOME%"=="" goto javadone
-echo =======================================================
-echo Setup the JAVA_HOME environment variable.
-echo Hint (for XP): Click Start -- Control Panel -- System.
-echo Then click Advanced, then click "Environment Variables".
-echo ========================================================
-goto end
-:javadone
-
-REM Set-up ANT_HOME
-REM ---------------
-set ANT_HOME=.\lib\ant_home
-
-REM Put Ant libraries in CLASSPATH
-REM ------------------------------
-set CP=
-for %%i in (%ANT_HOME%\lib\*.jar) do call cp.bat %%i
-set CP=%JAVA_HOME%\lib\tools.jar;%CP%
-
-REM Call Ant to do the building
-REM ---------------------------
-set JAVA=%JAVA_HOME%\bin\java
-%JAVA% -classpath %CP% -Dant.home=%ANT_HOME% org.apache.tools.ant.Main -buildfile build.xml gather
-%JAVA% -classpath %CP% -Dant.home=%ANT_HOME% org.apache.tools.ant.Main %1 %2 %3 %4 %5 %6 %7 %8 %9 -buildfile build.xml
-
-:end
+ at echo off
+REM  $Id$
+
+REM See comments in build.sh.
+REM ALSO: I do not understand Windows and do not develop on this platform.
+REM       Therefore, any improvements of this script are welcome.
+REM       Please do not hesitate and contact Martin Senger <senger at ebi.ac.uk>.
+
+REM Set-up JAVA_HOME
+REM ----------------
+REM Example: set JAVA_HOME=\development\jdk
+
+if NOT "%JAVA_HOME%"=="" goto javadone
+echo =======================================================
+echo Setup the JAVA_HOME environment variable.
+echo Hint (for XP): Click Start -- Control Panel -- System.
+echo Then click Advanced, then click "Environment Variables".
+echo ========================================================
+goto end
+:javadone
+
+REM Set-up ANT_HOME
+REM ---------------
+set ANT_HOME=.\lib\ant_home
+
+REM Put Ant libraries in CLASSPATH
+REM ------------------------------
+set CP=
+for %%i in (%ANT_HOME%\lib\*.jar) do call cp.bat %%i
+set CP=%JAVA_HOME%\lib\tools.jar;%CP%
+
+REM Call Ant to do the building
+REM ---------------------------
+set "JAVA=%JAVA_HOME%\bin\java"
+"%JAVA%" -classpath "%CP%" -Dant.home=%ANT_HOME% org.apache.tools.ant.Main -buildfile build.xml gather
+"%JAVA%" -classpath "%CP%" -Dant.home=%ANT_HOME% org.apache.tools.ant.Main %1 %2 %3 %4 %5 %6 %7 %8 %9 -buildfile build.xml
+
+:end




More information about the MOBY-guts mailing list