I am trying to build a sample Java MIDP game for mobile platform. I have downloaded and installed Java ME SDK 3.0 and NetBeans 6.8. I am browsing through the tutorial on building Java mobile games from this URL:

http://netbeans.org/kb/docs/javame/g...creencast.html

However after trying to run the application, it shows the following:

Starting emulator in execution mode
<Someplace>\MobileApps\Hello\nbproject\build-impl.xml:889: Execution failed with error code 1.
BUILD FAILED (total time: 21 seconds)

Here's the relevant section from the build-impl.xml file:

Code:
    <target name="cldc-run" if="cldc-platform.trigger">
        <nb-run jadfile="${dist.dir}/${dist.jad}" jarfile="${dist.dir}/${dist.jar}" jadurl="${dist.jad.url}" device="${platform.device}" platformhome="${platform.home}" platformtype="${platform.type}" execmethod="${run.method}" securitydomain="${evaluated.run.security.domain}" commandline="${platform.runcommandline}" classpath="${platform.bootclasspath}:${dist.dir}/${dist.jar}" cmdoptions="${run.cmd.options}"/>
    </target>
Checking the internet, I found one post and one response, which simply said I need to install the SDK, which I have already done. What's going wrong?

.