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/11 22:31:07 UTC

svn commit: r636130 - in /incubator/xap/trunk/trunk: ./ buildsystem/build-manufacturing.xml buildsystem/build.bat unittests/jsunit-server-properties.xml

Author: bbuffone
Date: Tue Mar 11 15:30:58 2008
New Revision: 636130

URL: http://svn.apache.org/viewvc?rev=636130&view=rev
Log:
This is the version 0.5.0 release of the Apache XAP project.  Lots of fixes for performance, UI widgets and others

Added:
    incubator/xap/trunk/trunk/
      - copied from r618320, incubator/xap/trunk/
    incubator/xap/trunk/trunk/unittests/jsunit-server-properties.xml
      - copied unchanged from r618383, incubator/xap/trunk/unittests/jsunit-server-properties.xml
Modified:
    incubator/xap/trunk/trunk/buildsystem/build-manufacturing.xml
    incubator/xap/trunk/trunk/buildsystem/build.bat

Modified: incubator/xap/trunk/trunk/buildsystem/build-manufacturing.xml
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/trunk/buildsystem/build-manufacturing.xml?rev=636130&r1=618320&r2=636130&view=diff
==============================================================================
--- incubator/xap/trunk/trunk/buildsystem/build-manufacturing.xml (original)
+++ incubator/xap/trunk/trunk/buildsystem/build-manufacturing.xml Tue Mar 11 15:30:58 2008
@@ -30,7 +30,7 @@
 	<!--
 	    VERSION NUMBER FOR THE RELEASE
 	 -->
-	<property name="version" value="0.3.0"/>
+	<property name="version" value="0.5.0"/>
 	 
     <!--  
     TODO
@@ -59,7 +59,7 @@
     <property name="zap-framework" value="apache-xap-ajax-framework-${version}.zip"/>
     <property name="zap-framework-tar" value="apache-xap-ajax-framework-${version}.tar"/>
 	
-    <property name="browserFileNames" value="C:\Program Files\mozilla.org\Mozilla\mozilla.exe,C:\Program Files\Internet Explorer\iexplore.exe"/>    
+    <property name="browserFileNames" value="C:\Program Files\Mozilla Firefox 2\firefox.exe,C:\Program Files\Internet Explorer\iexplore.exe"/>    
     
     <!-- checks out a fresh copy of xap trunk from the repository -->
     <target name="-checkout-xap"> 
@@ -241,14 +241,11 @@
 
     	<antcall target="-copy-xap"/>
     	        
-		<antcall target="-tests">
-            <param name="testPage" value="XapUnitTestSuite.html"/>
-        </antcall>
         
         <antcall target="doc-site"/>   
           
         <antcall target="-build-profile">
-            <param name="profile" value="xapcore-razorfish"/>
+            <param name="profile" value="xap-min"/>
         </antcall>
         
         <antcall target="-deploy-examples"/>   
@@ -376,5 +373,5 @@
     <!--=======================================================================
         Build and manufacture a distibution zip file
       ======================================================================-->
-    <target name="manufacture" description="checkout and build" depends="-checkout-xap,build-xap"/> 
+    <target name="manufacture" description="checkout and build" depends="build-xap"/> 
 </project>

Modified: incubator/xap/trunk/trunk/buildsystem/build.bat
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/trunk/buildsystem/build.bat?rev=636130&r1=618320&r2=636130&view=diff
==============================================================================
--- incubator/xap/trunk/trunk/buildsystem/build.bat (original)
+++ incubator/xap/trunk/trunk/buildsystem/build.bat Tue Mar 11 15:30:58 2008
@@ -1,34 +1,14 @@
-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
 
-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 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"
 
 set CLASSPATH=%CLASSPATH%;./unittests/jsunit/java/lib/junit.jar
-set PATH=%PATH%;%ANT_HOME%
+set PATH=%PATH%;%ANT_HOME%;%ANT_HOME%/bin
 
-call ant %*
+call cls
+ant %*
 
 if "%OS%"=="Windows_NT" @endlocal
 :EOF