I'm having trouble using the <entry /> tag. The bb-ant-tools suggest it is a nested tag of rapc, yet when I run this, I get an error that it is not a nested tag!
What do I need to do to correct the below to setup an alt entry point?
Code:
<rapc destdir="${dist}" jdehome="${jdehome}" jdkhome="${javahome}" output="${output}" >
<jdp type="cldc"
title="${title}" vendor="${vendor}"
version="${version}"
description="${description}"
systemmodule="true"
runonstartup="true"
startuptier="7" />
<entry
title="${title}"
arguments="click"
systemmodule="false"
runonstartup="false"
startuptier="7"
ribbonposition="0"
icon="../img/OrangeA.png" />
<src>
<fileset dir="${src}">
<include name="**/*.java" />
<include name="resources/**/*.*" />
</fileset>
</src>
</rapc>
Thanks