If you want to run an APE project you normally use
ant run which deletes the build folder, builds all dependencies, copies all dependencies to the build/merged/bin/ARE folder and copies the custom files of the custom folder to build/merged/bin/ARE.
The target ant run-quick currently only starts the project.
When developing an Asterics solution it is very annoying if you have to repeatedly call ant run and wait for a long time. ant run is good to always create a consistent state in case the ARE.baseURI changed or if the used ARE.baseURI is not compiled. But in many cases only copying the custom files to the build folder and then starting the ARE would be sufficient.
If you want to run an APE project you normally use
ant run
which deletes the build folder, builds all dependencies, copies all dependencies to thebuild/merged/bin/ARE
folder and copies the custom files of thecustom
folder tobuild/merged/bin/ARE
.The target
ant run-quick
currently only starts the project. When developing an Asterics solution it is very annoying if you have to repeatedly callant run
and wait for a long time.ant run
is good to always create a consistent state in case the ARE.baseURI changed or if the used ARE.baseURI is not compiled. But in many cases only copying the custom files to the build folder and then starting the ARE would be sufficient.Solution / Workaround
Call
ant APE-copy & ant run-quick