Products » mBooster » Technical Support » mBooster documentation » Ch3-5-ANT Integration
ANT is a popular build tool for J2ME development. mBooster can be easily integrated into ANT scripts, using the standard exec task. For more details on ANT exec task, please refer to ANT documentation.
Here is an example:
<exec executable="${executable}" failonerror="true"> <arg line="${commands}"/> </exec>
Notes:
Here is another example:
<exec executable="c:/innaworks/mbooster-2-6/mBooster.exe" failonerror="true"> <arg line="-p C:/Eclipse/Workspace/MyGame/MyGame.properties"/> </exec>