Well I guess your master pom contained the definition of the flexmojos-maven-plugin. If you removed the reference to that, the plugin is not configured in your ex-child-pom and therefore maven can't build swf. You have to copy the plugin definition from your master pom to your child pom in order to make it work again.
Chris 2011/3/16 Sri Sankaran <[email protected]>: > Using: Flexmojos version 3.8.0 > I have been working with a multi-module project with the following siblings > <modules> > <module>project-swc</module> <!-- Reusable library --> > <module>project-swf</module> <!-- Application SWF --> > <module>project-war</module> <!-- Deployable WAR --> > </modules> > This has worked great. Now I decided to extract the project-swc module into > a standalone project of its own so that the components it builds can be used > by other projects. In order to do so, I refactored its pom.xml so that it > could stand on its own. This involved removal of reference to a parent and > setting all necessary properties in the project's pom. > However when I attempted to build the SWC module on its own Maven complains > that swc is an unknown packaging type. > What am I missing? How did it work in the multi-module setup (where the > project-swc module had a swc packaging). > Sri > > -- > 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/
