There might be a fancier way of doing this but I just added the linkReport property to the Application's POM and then the loadExterns property to each module. The loadExtern should be the Application's artifact. There is a property called loadExternsOnModules but I have not tried it.
<configuration> <sourceFile>YourApplication.mxml</sourceFile> <linkReport>true</linkReport> </configuration> <loadExterns> <loadExtern> <groupId>com.application.groupId</groupId> <artifactId>yourApplication</artifactId> <version>2.0</version> </loadExtern> </loadExterns> On Dec 10, 7:03 am, Dani <[email protected]> wrote: > I have separate projects for my main swf and module swf > > my parent pom look like this: > > <modules> > <module>module</module> > <module>app</module> > <module>war</module> > </modules> > > how do I cause the module swf to use the flag -load-externs (with the > main swf link report as input) while compiling? -- 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/
