You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by bb...@apache.org on 2008/03/16 22:41:36 UTC

svn commit: r637678 - /incubator/xap/tags/XAP_0.5.0/buildsystem/build.bat

Author: bbuffone
Date: Sun Mar 16 15:41:32 2008
New Revision: 637678

URL: http://svn.apache.org/viewvc?rev=637678&view=rev
Log:
File was changed during manufacturing, but not checked in.

Modified:
    incubator/xap/tags/XAP_0.5.0/buildsystem/build.bat

Modified: incubator/xap/tags/XAP_0.5.0/buildsystem/build.bat
URL: http://svn.apache.org/viewvc/incubator/xap/tags/XAP_0.5.0/buildsystem/build.bat?rev=637678&r1=637677&r2=637678&view=diff
==============================================================================
--- incubator/xap/tags/XAP_0.5.0/buildsystem/build.bat (original)
+++ incubator/xap/tags/XAP_0.5.0/buildsystem/build.bat Sun Mar 16 15:41:32 2008
@@ -1,14 +1,34 @@
+REM
+REM Licensed to the Apache Software Foundation (ASF) under one
+REM  or more contributor license agreements.  See the NOTICE file
+REM  distributed with this work for additional information
+REM  regarding copyright ownership.  The ASF licenses this file
+REM  to you under the Apache License, Version 2.0 (the
+REM  "License"); you may not use this file except in compliance
+REM  with the License.  You may obtain a copy of the License at
+REM
+REM	http://www.apache.org/licenses/LICENSE-2.0
+REM
+REM  Unless required by applicable law or agreed to in writing, software
+REM  distributed under the License is distributed on an "AS IS" BASIS,
+REM  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+REM  See the License for the specific language governing permissions and
+REM  limitations under the License.
+REM
+
 @echo off
 if "%OS%"=="Windows_NT" @setlocal
 
-set ANT_HOME="C:\3rdpartysdk\nexaweb\head\products\platform\CommonBuild\apache-ant-1.6.2"
-set JAVA_HOME="C:\3rdpartysdk\nexaweb\head\products\platform\CommonBuild\jdk1.4.2"
+rem Uncomment the line below and set the ANT_HOME to point to your ANT install
+rem set ANT_HOME=
+
+rem Uncomment the line below and set the JAVA_HOME to point to a JDK 1.5 install
+rem set JAVA_HOME=
 
 set CLASSPATH=%CLASSPATH%;./unittests/jsunit/java/lib/junit.jar
-set PATH=%PATH%;%ANT_HOME%;%ANT_HOME%/bin
+set PATH=%PATH%;%ANT_HOME%
 
-call cls
-ant %*
+call ant %*
 
 if "%OS%"=="Windows_NT" @endlocal
 :EOF