I hope I didn't strip too much but the error occurs with this patch:
Index: flexmojos-testing/flexmojos-test-harness/projects/issues/ flexmojos-159/pom.xml =================================================================== --- flexmojos-testing/flexmojos-test-harness/projects/issues/ flexmojos-159/pom.xml (revision 1384) +++ flexmojos-testing/flexmojos-test-harness/projects/issues/ flexmojos-159/pom.xml (working copy) @@ -2,28 +2,43 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http:// www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http:// maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.sonatype.flexmojos</groupId> - <artifactId>flexmojos-flex-super-pom</artifactId> - <version>%{flexmojos.version}</version> - </parent> - <groupId>info.rvin.itest.issues</groupId> <artifactId>flexmojos-159</artifactId> <version>1.0-SNAPSHOT</version> + <packaging>swf</packaging> + + <build> + <sourceDirectory>src/main/flex</sourceDirectory> + <testSourceDirectory>src/test/flex</testSourceDirectory> + <plugins> + <plugin> + <groupId>org.sonatype.flexmojos</groupId> + <artifactId>flexmojos-maven-plugin</artifactId> + <version>3.3-SNAPSHOT</version> + <extensions>true</extensions> + <configuration> + <compiledLocales> + <locale>en_US</locale> + </compiledLocales> + </configuration> + <dependencies> + <dependency> + <groupId>com.adobe.flex</groupId> + <artifactId>compiler</artifactId> + <version>4.0.0.7219</version> + <type>pom</type> + </dependency> + </dependencies> + </plugin> + </plugins> + </build> - <build> - <plugins> - <plugin> - <groupId>org.sonatype.flexmojos</groupId> - <artifactId>flexmojos-maven-plugin</artifactId> - - <configuration> - <compileLocales> - <locale>en_US</locale> - </compileLocales> - </configuration> - </plugin> - </plugins> - </build> + <dependencies> + <dependency> + <groupId>com.adobe.flex.framework</groupId> + <artifactId>flex-framework</artifactId> + <version>4.0.0.7219</version> + <type>pom</type> + </dependency> + </dependencies> </project> \ No newline at end of file Index: flexmojos-testing/flexmojos-test-harness/projects/issues/ flexmojos-159/src/main/locales/en_US/TestBundle.properties =================================================================== --- flexmojos-testing/flexmojos-test-harness/projects/issues/ flexmojos-159/src/main/locales/en_US/TestBundle.properties (revision 0) +++ flexmojos-testing/flexmojos-test-harness/projects/issues/ flexmojos-159/src/main/locales/en_US/TestBundle.properties (revision 0) @@ -0,0 +1 @@ +hello = Hello world \ No newline at end of file --~--~---------~--~----~------------~-------~--~----~ 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?hl=en?hl=en http://blog.flex-mojos.info/ -~----------~----~----~----~------~----~------~--~---
