I managed to make RSL for flex framework work.
You have to add scope caching for these dependencies :

<dependency>
                  <groupId>com.adobe.flex.framework</groupId>
                  <artifactId>framework</artifactId>
                  <version>${flex.compiler.version}</version>
                  <type>swc</type>
                  <scope>caching</scope>
                </dependency>
                <dependency>
                  <groupId>com.adobe.flex.framework</groupId>
                  <artifactId>rpc</artifactId>
                  <version>${flex.compiler.version}</version>
                  <type>swc</type>
                  <scope>caching</scope>
                </dependency>

The mistake I made previously that prevented framework rsl from
working was to add scope caching to the dependency
com.adobe.flex.framework:flex-framework::pom.
Either you declare this dependency and override scope for the 2 upper
dependencies, or you copy the content of this pom in yours, and add
scope caching to framework and rpc.
This works only for swf packaging projects (don't use it on your
common lib.swc)

-- 
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/

Reply via email to