Ok, I found my problem. I was specifying the rb dependencies like so:
<dependency> <groupId>org.apache.flex.framework</groupId> <artifactId>framework</artifactId> <version>${flex.sdk.version}</version> *<classifier>${language}.rb</classifier> <type>swc</type>* <scope>rsl</scope> </dependency> However, that is incorrect (thought it resolves on the main project). The 'rb' designation should be specified in the type parameter, not the classifier. <dependency> <groupId>org.apache.flex.framework</groupId> <artifactId>framework</artifactId> <version>${flex.sdk.version}</version> *<classifier>${language}</classifier> <type>rb.swc</type>* <scope>rsl</scope> </dependency> -- View this message in context: http://apache-flex-development.2333347.n4.nabble.com/FlexMojos-with-RSLs-tp48944p48949.html Sent from the Apache Flex Development mailing list archive at Nabble.com.