[mapguide-commits] r8516 - in trunk/Tools/Vagrant: centos/x64 centos/x86 scripts ubuntu/x64 ubuntu/x86
svn_mapguide at osgeo.org
svn_mapguide at osgeo.org
Sun Jan 25 01:39:02 PST 2015
Author: jng
Date: 2015-01-25 01:39:02 -0800 (Sun, 25 Jan 2015)
New Revision: 8516
Modified:
trunk/Tools/Vagrant/centos/x64/Vagrantfile
trunk/Tools/Vagrant/centos/x86/Vagrantfile
trunk/Tools/Vagrant/scripts/build_fdo.sh
trunk/Tools/Vagrant/scripts/mginstallcentos.sh
trunk/Tools/Vagrant/scripts/mginstallubuntu.sh
trunk/Tools/Vagrant/scripts/mguninstallcentos.sh
trunk/Tools/Vagrant/ubuntu/x64/Vagrantfile
trunk/Tools/Vagrant/ubuntu/x86/Vagrantfile
Log:
#2520: Update Vagrant configurations for MGOS 3.0
- Update FDO version to 4.0.0
- Remove providers.xml in Unit Test directory before running unit test (it seems to pick up this one instead of the installed one)
- Run FDO unit tests with NLSPATH set inline
- Also run web tier tests as part of the FDO/MapGuide test suite execution
Modified: trunk/Tools/Vagrant/centos/x64/Vagrantfile
===================================================================
--- trunk/Tools/Vagrant/centos/x64/Vagrantfile 2015-01-23 13:08:44 UTC (rev 8515)
+++ trunk/Tools/Vagrant/centos/x64/Vagrantfile 2015-01-25 09:39:02 UTC (rev 8516)
@@ -152,7 +152,7 @@
MAKE_FDO_SDK=0
SCRIPT_ROOT=~/scripts
FDO_SRC_ROOT=~/fdo
-FDO_VER_MM=3.9
+FDO_VER_MM=4.0
FDO_VER_FULL=${FDO_VER_MM}.0
MG_VER_MM=3.0
MG_VER_FULL=${MG_VER_MM}.0
@@ -163,7 +163,9 @@
MG_SRC=$MG_SRC_ROOT/MgDev
FDO_TARBALL=fdo-checkout.tar.gz
MG_TARBALL=mapguide-checkout.tar.gz
-if [ -d $FDO_SRC ];
+FDO_INST_PATH=/usr/local/fdo-${FDO_VER_FULL}
+MG_INST_PATH=/usr/local/mapguideopensource-${MG_VER_FULL}
+if [ -d $FDO_SRC ];
then
HAVE_FDO=1
fi
@@ -249,35 +251,40 @@
> ~/unit_test_status.log
if [ $FDO_UNIT_TEST -eq 1 ];
then
- export NLSPATH=/usr/local/fdo-${FDO_VER_FULL}/nls/%N
echo [provision]: Unit test FDO
BUILD_COMPONENT="Unit Test FDO Core"
cd $SCRIPT_ROOT/fdo_build_area/Fdo/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_core_unit_test.log
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_core_unit_test.log
check_test
BUILD_COMPONENT="Unit Test SHP Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/SHP/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_shp_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_shp_unit_test.log
check_test
BUILD_COMPONENT="Unit Test SDF Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/SDF/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_sdf_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_sdf_unit_test.log
check_test
BUILD_COMPONENT="Unit Test SQLite Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/SQLite/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_sqlite_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_sqlite_unit_test.log
check_test
BUILD_COMPONENT="Unit Test GDAL Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/GDAL/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_gdal_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_gdal_unit_test.log
check_test
BUILD_COMPONENT="Unit Test OGR Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/OGR/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_ogr_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_ogr_unit_test.log
check_test
BUILD_COMPONENT="Unit Test WMS Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/WMS/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_wms_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_wms_unit_test.log
check_test
fi
if [ $MG_UNIT_TEST -eq 1 ];
@@ -303,6 +310,8 @@
sudo mv UnitTestResults_${comp}.xml ~/UnitTestResults_${comp}.xml
fi
done
+ cd $SCRIPT_ROOT/mgdev
+ sudo -E ./run_tests.sh --prefix ${MG_INST_PATH} --with-php --with-java --logpath ~
fi
cd $SCRIPT_ROOT
echo [provision]: Make output dir
Modified: trunk/Tools/Vagrant/centos/x86/Vagrantfile
===================================================================
--- trunk/Tools/Vagrant/centos/x86/Vagrantfile 2015-01-23 13:08:44 UTC (rev 8515)
+++ trunk/Tools/Vagrant/centos/x86/Vagrantfile 2015-01-25 09:39:02 UTC (rev 8516)
@@ -152,7 +152,7 @@
MAKE_FDO_SDK=0
SCRIPT_ROOT=~/scripts
FDO_SRC_ROOT=~/fdo
-FDO_VER_MM=3.9
+FDO_VER_MM=4.0
FDO_VER_FULL=${FDO_VER_MM}.0
MG_VER_MM=3.0
MG_VER_FULL=${MG_VER_MM}.0
@@ -163,7 +163,9 @@
MG_SRC=$MG_SRC_ROOT/MgDev
FDO_TARBALL=fdo-checkout.tar.gz
MG_TARBALL=mapguide-checkout.tar.gz
-if [ -d $FDO_SRC ];
+FDO_INST_PATH=/usr/local/fdo-${FDO_VER_FULL}
+MG_INST_PATH=/usr/local/mapguideopensource-${MG_VER_FULL}
+if [ -d $FDO_SRC ];
then
HAVE_FDO=1
fi
@@ -251,35 +253,40 @@
> ~/unit_test_status.log
if [ $FDO_UNIT_TEST -eq 1 ];
then
- export NLSPATH=/usr/local/fdo-${FDO_VER_FULL}/nls/%N
echo [provision]: Unit test FDO
BUILD_COMPONENT="Unit Test FDO Core"
cd $SCRIPT_ROOT/fdo_build_area/Fdo/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_core_unit_test.log
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_core_unit_test.log
check_test
BUILD_COMPONENT="Unit Test SHP Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/SHP/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_shp_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_shp_unit_test.log
check_test
BUILD_COMPONENT="Unit Test SDF Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/SDF/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_sdf_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_sdf_unit_test.log
check_test
BUILD_COMPONENT="Unit Test SQLite Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/SQLite/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_sqlite_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_sqlite_unit_test.log
check_test
BUILD_COMPONENT="Unit Test GDAL Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/GDAL/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_gdal_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_gdal_unit_test.log
check_test
BUILD_COMPONENT="Unit Test OGR Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/OGR/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_ogr_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_ogr_unit_test.log
check_test
BUILD_COMPONENT="Unit Test WMS Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/WMS/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_wms_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_wms_unit_test.log
check_test
fi
if [ $MG_UNIT_TEST -eq 1 ];
@@ -305,6 +312,8 @@
sudo mv UnitTestResults_${comp}.xml ~/UnitTestResults_${comp}.xml
fi
done
+ cd $SCRIPT_ROOT/mgdev
+ sudo -E ./run_tests.sh --prefix ${MG_INST_PATH} --with-php --with-java --logpath ~
fi
cd $SCRIPT_ROOT
echo [provision]: Make output dir
Modified: trunk/Tools/Vagrant/scripts/build_fdo.sh
===================================================================
--- trunk/Tools/Vagrant/scripts/build_fdo.sh 2015-01-23 13:08:44 UTC (rev 8515)
+++ trunk/Tools/Vagrant/scripts/build_fdo.sh 2015-01-25 09:39:02 UTC (rev 8516)
@@ -12,8 +12,8 @@
FDO_BUILD_COMPONENT=
# FDO version. Make sure this matches your FDO build source
-FDO_VER_MAJOR=3
-FDO_VER_MINOR=9
+FDO_VER_MAJOR=4
+FDO_VER_MINOR=0
FDO_VER_REV=0
# Extra flags to pass to FDO build scripts
Modified: trunk/Tools/Vagrant/scripts/mginstallcentos.sh
===================================================================
--- trunk/Tools/Vagrant/scripts/mginstallcentos.sh 2015-01-23 13:08:44 UTC (rev 8515)
+++ trunk/Tools/Vagrant/scripts/mginstallcentos.sh 2015-01-25 09:39:02 UTC (rev 8516)
@@ -1,7 +1,7 @@
#!/bin/bash
URL="http://download.osgeo.org/mapguide/releases/3.0.0/Release"
#URL="http://192.168.0.4/downloads"
-FDOVER_MAJOR_MINOR=3.9
+FDOVER_MAJOR_MINOR=4.0
FDOVER_POINT=0
FDOVER_REV=0
FDO_ARCH=i386
Modified: trunk/Tools/Vagrant/scripts/mginstallubuntu.sh
===================================================================
--- trunk/Tools/Vagrant/scripts/mginstallubuntu.sh 2015-01-23 13:08:44 UTC (rev 8515)
+++ trunk/Tools/Vagrant/scripts/mginstallubuntu.sh 2015-01-25 09:39:02 UTC (rev 8516)
@@ -2,7 +2,7 @@
TEMPDIR=/tmp/build_mapguide
URL="http://download.osgeo.org/mapguide/releases/3.0.0/Release/ubuntu12"
#URL="http://192.168.0.5/downloads/ubuntu12"
-FDOVER_MAJOR_MINOR=3.9
+FDOVER_MAJOR_MINOR=4.0
FDOVER_MAJOR_MINOR_REV=${FDOVER_MAJOR_MINOR}.0
FDOBUILD=0
FDOARCH=i386
Modified: trunk/Tools/Vagrant/scripts/mguninstallcentos.sh
===================================================================
--- trunk/Tools/Vagrant/scripts/mguninstallcentos.sh 2015-01-23 13:08:44 UTC (rev 8515)
+++ trunk/Tools/Vagrant/scripts/mguninstallcentos.sh 2015-01-25 09:39:02 UTC (rev 8516)
@@ -1,5 +1,5 @@
#!/bin/bash
-FDOVER_MAJOR_MINOR=3.9
+FDOVER_MAJOR_MINOR=4.0
FDOVER_POINT=0
FDOVER_MAJOR_MINOR_REV=${FDOVER_MAJOR_MINOR}.${FDOVER_POINT}
MGVER_MAJOR_MINOR=3.0
Modified: trunk/Tools/Vagrant/ubuntu/x64/Vagrantfile
===================================================================
--- trunk/Tools/Vagrant/ubuntu/x64/Vagrantfile 2015-01-23 13:08:44 UTC (rev 8515)
+++ trunk/Tools/Vagrant/ubuntu/x64/Vagrantfile 2015-01-25 09:39:02 UTC (rev 8516)
@@ -144,7 +144,7 @@
FDO_UNIT_TEST=1
SCRIPT_ROOT=~/scripts
FDO_SRC_ROOT=~/fdo
-FDO_VER_MM=3.9
+FDO_VER_MM=4.0
FDO_VER_FULL=${FDO_VER_MM}.0
MG_VER_MM=3.0
MG_VER_FULL=${MG_VER_MM}.0
@@ -155,6 +155,8 @@
MG_SRC=$MG_SRC_ROOT/MgDev
FDO_TARBALL=fdo-checkout.tar.gz
MG_TARBALL=mapguide-checkout.tar.gz
+FDO_INST_PATH=/usr/local/fdo-${FDO_VER_FULL}
+MG_INST_PATH=/usr/local/mapguideopensource-${MG_VER_FULL}
HAVE_FDO_SDK=0
FDO_SDK_PKG_PATH=~/fdosdk
@@ -302,35 +304,40 @@
> ~/unit_test_status.log
if [ $FDO_UNIT_TEST -eq 1 ];
then
- export NLSPATH=/usr/local/fdo-${FDO_VER_FULL}/nls/%N
echo [provision]: Unit test FDO
BUILD_COMPONENT="Unit Test FDO Core"
cd $SCRIPT_ROOT/fdo_build_area/Fdo/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_core_unit_test.log
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_core_unit_test.log
check_test
BUILD_COMPONENT="Unit Test SHP Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/SHP/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_shp_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_shp_unit_test.log
check_test
BUILD_COMPONENT="Unit Test SDF Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/SDF/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_sdf_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_sdf_unit_test.log
check_test
BUILD_COMPONENT="Unit Test SQLite Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/SQLite/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_sqlite_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_sqlite_unit_test.log
check_test
BUILD_COMPONENT="Unit Test GDAL Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/GDAL/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_gdal_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_gdal_unit_test.log
check_test
BUILD_COMPONENT="Unit Test OGR Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/OGR/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_ogr_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_ogr_unit_test.log
check_test
BUILD_COMPONENT="Unit Test WMS Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/WMS/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_wms_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_wms_unit_test.log
check_test
fi
if [ $MG_UNIT_TEST -eq 1 ];
@@ -356,6 +363,8 @@
sudo mv UnitTestResults_${comp}.xml ~/UnitTestResults_${comp}.xml
fi
done
+ cd $SCRIPT_ROOT/mgdev
+ sudo -E ./run_tests.sh --prefix ${MG_INST_PATH} --with-php --with-java --logpath ~
fi
cd $SCRIPT_ROOT
sudo mkdir -p /vagrant/build
Modified: trunk/Tools/Vagrant/ubuntu/x86/Vagrantfile
===================================================================
--- trunk/Tools/Vagrant/ubuntu/x86/Vagrantfile 2015-01-23 13:08:44 UTC (rev 8515)
+++ trunk/Tools/Vagrant/ubuntu/x86/Vagrantfile 2015-01-25 09:39:02 UTC (rev 8516)
@@ -144,7 +144,7 @@
FDO_UNIT_TEST=1
SCRIPT_ROOT=~/scripts
FDO_SRC_ROOT=~/fdo
-FDO_VER_MM=3.9
+FDO_VER_MM=4.0
FDO_VER_FULL=${FDO_VER_MM}.0
MG_VER_MM=3.0
MG_VER_FULL=${MG_VER_MM}.0
@@ -155,7 +155,8 @@
MG_SRC=$MG_SRC_ROOT/MgDev
FDO_TARBALL=fdo-checkout.tar.gz
MG_TARBALL=mapguide-checkout.tar.gz
-
+FDO_INST_PATH=/usr/local/fdo-${FDO_VER_FULL}
+MG_INST_PATH=/usr/local/mapguideopensource-${MG_VER_FULL}
HAVE_FDO_SDK=0
FDO_SDK_PKG_PATH=~/fdosdk
FDO_SDK_TARBALL=
@@ -302,35 +303,40 @@
> ~/unit_test_status.log
if [ $FDO_UNIT_TEST -eq 1 ];
then
- export NLSPATH=/usr/local/fdo-${FDO_VER_FULL}/nls/%N
echo [provision]: Unit test FDO
BUILD_COMPONENT="Unit Test FDO Core"
cd $SCRIPT_ROOT/fdo_build_area/Fdo/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_core_unit_test.log
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_core_unit_test.log
check_test
BUILD_COMPONENT="Unit Test SHP Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/SHP/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_shp_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_shp_unit_test.log
check_test
BUILD_COMPONENT="Unit Test SDF Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/SDF/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_sdf_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_sdf_unit_test.log
check_test
BUILD_COMPONENT="Unit Test SQLite Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/SQLite/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_sqlite_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_sqlite_unit_test.log
check_test
BUILD_COMPONENT="Unit Test GDAL Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/GDAL/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_gdal_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_gdal_unit_test.log
check_test
BUILD_COMPONENT="Unit Test OGR Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/OGR/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_ogr_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_ogr_unit_test.log
check_test
BUILD_COMPONENT="Unit Test WMS Provider"
cd $SCRIPT_ROOT/fdo_build_area/Providers/WMS/Src/UnitTest
- sudo -E ./UnitTest 2>&1 | tee ~/fdo_wms_unit_test.log
+ sudo rm providers.xml
+ sudo -E NLSPATH=${FDO_INST_PATH}/nls/%N ./UnitTest 2>&1 | tee ~/fdo_wms_unit_test.log
check_test
fi
if [ $MG_UNIT_TEST -eq 1 ];
@@ -356,6 +362,8 @@
sudo mv UnitTestResults_${comp}.xml ~/UnitTestResults_${comp}.xml
fi
done
+ cd $SCRIPT_ROOT/mgdev
+ sudo -E ./run_tests.sh --prefix ${MG_INST_PATH} --with-php --with-java --logpath ~
fi
cd $SCRIPT_ROOT
sudo mkdir -p /vagrant/build
More information about the mapguide-commits
mailing list