Hey All, I just switched over to use the new 4.6 sdk. It appears that the compiler is missing from the mavenized sdk package. Is there something I am missing?!?! Here is the test pom:
<?xml version="1.0"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.banddigital</groupId> <version>1.0-SNAPSHOT</version> <artifactId>fm46-mojos-swfTest</artifactId> <packaging>swf</packaging> <name>fm46-mojos-swfTest</name> <properties> <flexmojos.version>4.1-beta</flexmojos.version> <!--<flex.sdk.version>4.1</flex.sdk.version>--> <flex.sdk.version>4.6.0.23201</flex.sdk.version> </properties> <build> <sourceDirectory>src/main/flex</sourceDirectory> <plugins> <plugin> <groupId>org.sonatype.flexmojos</groupId> <artifactId>flexmojos-maven-plugin</artifactId> <version>${flexmojos.version}</version> <dependencies> <dependency> <groupId>com.adobe.flex</groupId> <artifactId>compiler</artifactId> <version>${flex.sdk.version}</version> <type>pom</type> </dependency> </dependencies> <extensions>true</extensions> <configuration> <sourceFile>Main.mxml</sourceFile> </configuration> </plugin> </plugins> </build> <dependencies> </dependencies> </project> And here is the error that it is generating: [WARNING] The POM for com.adobe.flex:compiler:pom:4.6.0.23201 is missing, no dependency information available [ERROR] The build could not read 1 project -> [Help 1] [ERROR] [ERROR] The project com.banddigital:fm46-mojos-swfTest:1.0-SNAPSHOT (/Users/jmonta01/Sandbox/HD/NGP/ngp-dashboard/fm4.6-swfTest/pom.xml) has 2 errors [ERROR] Unresolveable build extension: Plugin org.sonatype.flexmojos:flexmojos-maven-plugin:4.1-beta or one of its dependencies could not be resolved: Failure to find com.adobe.flex:compiler:pom:4.6.0.23201 in http://repository.sonatype.org/content/groups/flexgroup/ was cached in the local repository, resolution will not be reattempted until the update interval of flex-mojos-plugin-repository has elapsed or updates are forced -> [Help 2] [ERROR] Unknown packaging: swf @ line 8, column 13 [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException [ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException Thanks for any help, Jason This message and any attachments may contain confidential information and is intended only for the personal and confidential use of the designated recipient(s) named above. If you are not the intended recipient (or have received this e-mail in error), notify the sender immediately and delete the contents without reading, copying, storing, forwarding or disclosing its contents to any other person. -- 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/
