I'm wondering if it's possible to fix a smallish issue with the compilation process. I set my RSL url like this:
<rslUrls> <url>http://fpdownload.adobe.com/pub/{extension}/flex/${flex.sdk.version}/{artifactId}_{version}.{extension}</url> <url>rsls/{artifactId}-{version}.{extension}</url> </rslUrls> The first is of course to get the flex framework cached RSLs, and the second is for local RSLs. This of course works fine, but my problem comes with the config.xml that gets created: <runtime-shared-library-path> <path-element>C:\Users\mboudreau\.m2\repository\com\adobe\flex\framework\framework\4.5.1.21328\framework-4.5.1.21328.swc</path-element> <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.5.1.21328/framework_4.5.1.21328.swz</rsl-url> <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url> <rsl-url>rsls/framework-4.5.1.21328.swz</rsl-url> </runtime-shared-library-path> So it would look in both location for the RSL file, for all RSLs. This isn't much an issue with the Flex RSL, but it does become one when trying to load my local RSLs since it always look at the adobe site first. When I'm testing this in my browser, it seems that it takes a few seconds longer to load my application when using this method because it needs to wait for the request to come back before going to the next url. I was hoping that there might be a way to fix this to have only one specific url per RSL so that it doesn't have to go through each rslUrl. -- 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/
