You shouldnt have your test and resources folders be children of your sources. I guess you would get rid of the problem if your source root were src/something and your test and resources would be in parrallell.
I woul strongly suggest to use the following structure: src/main/flex (sources) src/main/resources (resources) src/test/flex (test sources) src/test/resources (test resources) Chris Am 24.08.2012 14:04 schrieb "Ross Attrill" <[email protected]>: > This doesn't seem to work. If I add something like: > > <build> > <sourceDirectory>src</sourceDirectory> > <testSourceDirectory>src/test</testSourceDirectory> > <!--This is intended to remove the warning "Nothing exspecified to > include" but doesn't --> > <resources> > <resource> > <directory>src/resources</directory> > <includes> > <include>copyright.txt</include> > </includes> > </resource> > </resources> > > to my project which has swc packaging I still get this message: > > I am using FlexMojos 3.8. > > Has anybody else been able to get rid of this problem? It seems to > relate to projects of with packaging swc. > > > On Tuesday, October 19, 2010 11:15:20 PM UTC+11, Marvin Froeder wrote: >> >> Set any includes... >> >> On Tue, Oct 19, 2010 at 6:53 AM, Dave Collie <[email protected]> wrote: >> >>> Hi all >>> >>> I have a completely clean flexmojos build cycle apart from the above >>> warning. Any clues as to what configuration change I need to make to >>> get rid of it? >>> >>> Thanks >>> >>> Dave >>> >>> -- >>> 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 >>> flex-mojos+...@**googlegroups.com >>> For more options, visit this group at >>> http://groups.google.com/**group/flex-mojos<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/ > -- 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/
