Ok ... so you already got that ;-)
Don't bend your head too much around this ... Flexmojos automagically
calculates which resources to get. This starts getting really crazy as soon as
you use locale-chains (really glad all seems to be working, cause this part of
Flexmojos is a nightmare ;-) ). By using the rb.swc dependency type you should
be protected from this voodo.
And I don't know if you intended this, you also have to drop the classifier
element ... so the correct dependency would be:
<dependency>
<groupId>org.apache.flex.framework</groupId>
<artifactId>framework</artifactId>
<version>${flex.sdk.version}</version>
<type>rb.swc</type>
<scope>rsl</scope>
</dependency>
Chris
________________________________________
Von: mscharp <[email protected]>
Gesendet: Montag, 31. August 2015 23:09
An: [email protected]
Betreff: Re: FlexMojos with RSLs
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.