We have a Flex 4.0 project in our product and we're trying to set up command-line build for it. This is to be used on our build server.
So far we have tried three approaches, but none seems satisfactory:
1) Using mxmlc - this has the drawback that we have to explicitly give all dependencies, instead of using the ones already present in the project.
2) Using ant (specifically fb.exportreleasebuild) - works well, but I cannot figure out how to set up a workspace with it. Now, I can probably set up a workspace beforehand, but I am led to believe this will not work due to Eclipse using absolute paths (see http://forums.adobe.com/thread/826995).
3) Using maven - I haven't tried it yet, but from reading some tutorials (e.g. http://ria.dzone.com/articles/flex-and-maven?page=0,1&mz=8019-adobe), it looks like the dependencies have to be manually specified as well. Also, I have to specify the exact Flex compiler version, which seems inelegant - I don't want to update my build script when I change the compiler version.
Is there a way to build a flex project from the command line, without manually specifying all dependencies and without manually creating a workspace?