Okay found it. Apparently the build fails on missing embeded images now. It's a [WARNING] in the compiler output and the build on older versions of flexmojos work just fine without it. (The build wasn't including images from source/resources
Looking at this thread http://groups.google.com/group/flex-mojos/browse_thread/thread/1e1b35e84606e3d2 I was able to find a solution, namely to add the following to the pom. <dependency> <groupId>org.sonatype.flexmojos</groupId> <artifactId>flexmojos-threadlocaltoolkit-wrapper</artifactId> <version>${flexmojos.version}</version> </dependency> The build section of the pom is now. <build> <sourceDirectory>src/main/flex</sourceDirectory> <testSourceDirectory>src/test/flex</testSourceDirectory> <plugins> <plugin> <groupId>org.sonatype.flexmojos</groupId> <artifactId>flexmojos-maven-plugin</artifactId> <version>4.0-beta-6</version> <extensions>true</extensions> <dependencies> <dependency> <groupId>org.sonatype.flexmojos</groupId> <artifactId>flexmojos-threadlocaltoolkit-wrapper</artifactId> <version>4.0-beta-6</version> </dependency> <dependency> <groupId>com.adobe.flex</groupId> <artifactId>compiler</artifactId> <version>4.1.0.16248</version> <type>pom</type> </dependency> </dependencies> <configuration> <useM2Repo>true</useM2Repo> <sourceFile>MainClient.mxml</sourceFile> </configuration> </plugin> </plugins> </build> On Mar 24, 10:04 am, Dominik Obermaier <[email protected]> wrote: > The additional output is in your console above the error message :) > > Am 24.03.2011 09:57, schrieb Athas: > > > On Mar 23, 6:46 pm, Bryan Turner<[email protected]> wrote: > > >> posted says is to check the logs; do you have any additional build output? > >> What version of Maven are you trying to build with? > >> On Mar 23, 2011 6:42 AM, "Athas"<[email protected]> wrote: > > I've no idea where to find additional build output. I'll try the newer > > betas. -- 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/
