If you are generally migrating to a maven build system, I would strongly recommend changing the directrory structure. As I will guarantee that not migrating will get you into trouble with the one or the other maven plugin.
The one thing you will have to get used to, is not having a "libs" directory. In Maven you reference other libs in your pom.xml file and the referenced libs have to be available in your local maven repository (usually "user home"/.m2/repository"). So in your case you would have to deploy your custom libs in your repository and then reference them in your projects pom.xml. I would suggest the following migration of directories: flex_lib: Inject your custom libs to your maven repo and reference the maven versions of standard libs flex_src: Change this to src/main/flex WebContent: Change this to src/main/resources Don't know what the difference between flex_src and src is though ... I would suggest to place the content of both in src/main/flex. Chris 2011/8/21 MarkV <[email protected]>: > I am also doing this for our team with unit tests, coverage, and > asdocs as well. > > I used the plugin build-helper-maven-plugin to resolve all the > directory issues since I didnt want to change all the directories as > the team was already used to the flexbuilder defaults. > > Which version of the flex sdk you are targeting is important since you > will have to set the <swfVersion> and <targetPlayer> as flexmojos > defaults to swf 10 and player 9.0.0. I think to set those tags also > requires moving to flexmojos 4.0. > > -- > You received this message because you are subscribed to the Google > Groups "Flex Mojos" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/flex-mojos > > http://flexmojos.sonatype.org/ > -- You received this message because you are subscribed to the Google Groups "Flex Mojos" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/flex-mojos http://flexmojos.sonatype.org/
