Velo handled most issues, I'll just comment a few more. On Mon, Jan 26, 2009 at 4:09 PM, Sam <[email protected]> wrote: > <build> > <finalName>commoncomponents</finalName> > <sourceDirectory>src/main/flex/</sourceDirectory> this is the default, you can remove it
> <outputDirectory>target/</outputDirectory> same here, default, no need to specify A guiding Maven principle is to only add configuration when it deviates from the default. And sometimes it can cause problems because once you specify your own values, we assume you are overriding on purpose and don't want the plugin to take care of it. .... > <compiledLocales> > <locale>en_US</locale> > </compiledLocales> > <mergeResourceBundle>true</mergeResourceBundle> mergeResourceBundle is deprecated and has been replaced with compiledLocales (merge=true) and runtimeLocales (merge=false). You can safely remove it. > 2. I know people who have used flex-compiler-mojo to build a SWF file > successfully which contains both application files as well as > localization files, has anyone built a SWC file with success? We now use runtimeLocales, but we have built compiled locales in the past with our swcs without problems. Logan --~--~---------~--~----~------------~-------~--~----~ 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?hl=en?hl=en http://blog.flex-mojos.info/ -~----------~----~----~----~------~----~------~--~---
