Build Failed on Development module

Downloaded the latest Development code available.
Follow the instruction to build the example got a build failed.

Buildfile: C:\Documents and Settings\TacHuynh\workspace\Build\build.xml
clean:
[delete] Deleting directory C:\Documents and Settings\TacHuynh\workspace\Build\bin
ModuleNames:
_include_antcontrib:
_include_pack200:
_include_postmodule:
init:
[echo] Build date: 01/17/2011 06:08 AM
[echo] Build version: 1
Versions:
[echo] WeatherModule 1.0.0.1-beta1
Classpaths:
project-WeatherModule_Common:
ModuleNames:
Classpaths:
_include_antcontrib:
MakeProject:
[echo] Compiling WeatherModule_Common
[mkdir] Created dir: C:\Documents and Settings\TacHuynh\workspace\Build\bin\WeatherModule_Common\bin
[mkdir] Created dir: C:\Documents and Settings\TacHuynh\workspace\Build\bin\WeatherModule_Common\dist
[jar] Warning: skipping jar archive C:\Documents and Settings\TacHuynh\workspace\Build\bin\WeatherModule_Common\dist\weather-common.jar because no files were included.
[jar] Building MANIFEST-only jar: C:\Documents and Settings\TacHuynh\workspace\Build\bin\WeatherModule_Common\dist\weather-common.jar
project-WeatherModule_Driver:
ModuleNames:
Classpaths:
_include_antcontrib:
MakeProject:
[echo] Compiling WeatherModule_Driver
[mkdir] Created dir: C:\Documents and Settings\TacHuynh\workspace\Build\bin\WeatherModule_Driver\bin
[javac] Compiling 29 source files to C:\Documents and Settings\TacHuynh\workspace\Build\bin\WeatherModule_Driver\bin

BUILD FAILED
C:\Documents and Settings\TacHuynh\workspace\Build\build.xml:148: The following error occurred while executing this line:
C:\Documents and Settings\TacHuynh\workspace\Build\build.xml:171: Error running javac.exe compiler

Total time: 1 second

You got that error because the Java JDK is not on the path. First download and install the Java JDK. Once installed you can do one of two things:

  1. Use the new Java JDK 6 as the installed JRE in Eclipse. To do this, go to Eclipse - Preferences. Select Java - Installed JREs and add the JDK.

  2. You can append the Java JDK bin path to the Windows path.

I recommend the first option since it is easy to setup.

Thanks Travis.
First option worked.
Tac