On Wed, Mar 24, 2010 at 14:12, Marvin Froeder <[email protected]> wrote:
> > On Wed, Mar 24, 2010 at 2:02 PM, Bruno Medeiros <[email protected]>wrote: > >> >> >> On Wed, Mar 24, 2010 at 13:42, Marvin Froeder <[email protected]> wrote: >> >>> unzip it? >>> >> >> Yes, I tried it. I asked because sources could be in the swf inside swc >> and if it is the cause there wouldn't be a way to verify. >> > Did you tried to read the XML then? > > Yes, no references to sources inside it too. Here I have to folders: src/main/flex have a lot of classes. src/main/resources have a lot of assets and one class with properties that embbed this assets. By default flex-mojos is not compiling the src/main/resources folder, so I need to do one of this two ways: 1. Use <artifactId>build-helper-maven-plugin</artifactId> and add the extra source by <source>${basedir}/src/main/resources</source> or 2. Put it in the flex-mojos configuration <includeSources> <sources>src/main/flex</sources> <sources>src/main/resources</sources> </includeSources> If I use the first one, the source and assets of the src/main/resources are included, but the sources of src/main/flex are not included. It's useless because I need the sources of src/main/flex. If I use the second one, no sources are included at all.. Whats the better choice? Any ideas for what's avoiding the sources to be included? -- BrunoJCM -- 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/ To unsubscribe from this group, send email to flex-mojos+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.
