The pom follows. Yes, the rsls are deployed along with the SWF
correctly.

<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>
  <parent>
    <artifactId>BasePom</artifactId>
    <groupId>com.xyz</groupId>
    <version>11.07-SNAPSHOT</version>
  </parent>
  <groupId>com.xyz</groupId>
  <artifactId>ApplicationSWF</artifactId>
  <version>11.07-SNAPSHOT</version>
  <packaging>swf</packaging>
  <name>ApplicationSWF</name>
  <dependencies>
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>halo</artifactId>
      <version>4.5.0.20967</version>
      <type>swc</type>
      <classifier>theme</classifier>
      <scope>theme</scope>
    </dependency>
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>playerglobal</artifactId>
      <version>4.5.0.20967</version>
      <type>swc</type>
      <classifier>10.2</classifier>
      <scope>external</scope>
    </dependency>
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>framework</artifactId>
      <version>4.5.0.20967</version>
      <type>swc</type>
      <scope>caching</scope>
    </dependency>
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>textLayout</artifactId>
      <version>4.5.0.20967</version>
      <type>swc</type>
      <scope>caching</scope>
    </dependency>
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>spark</artifactId>
      <version>4.5.0.20967</version>
      <type>swc</type>
      <scope>caching</scope>
    </dependency>
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>sparkskins</artifactId>
      <version>4.5.0.20967</version>
      <type>swc</type>
      <scope>caching</scope>
    </dependency>
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>rpc</artifactId>
      <version>4.5.0.20967</version>
      <type>swc</type>
      <scope>caching</scope>
    </dependency>
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>charts</artifactId>
      <version>4.5.0.20967</version>
      <type>swc</type>
      <scope>caching</scope>
    </dependency>
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>spark_dmv</artifactId>
      <version>4.5.0.20967</version>
      <type>swc</type>
      <scope>caching</scope>
    </dependency>
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>osmf</artifactId>
      <version>4.5.0.20967</version>
      <type>swc</type>
      <scope>caching</scope>
    </dependency>
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>mx</artifactId>
      <version>4.5.0.20967</version>
      <type>swc</type>
      <scope>caching</scope>
    </dependency>
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>advancedgrids</artifactId>
      <version>4.5.0.20967</version>
      <type>swc</type>
      <scope>caching</scope>
    </dependency>
    <dependency>
      <groupId>com.adobe.flex.framework</groupId>
      <artifactId>flex-framework</artifactId>
      <version>4.5.0.20967</version>
      <type>pom</type>
      <scope>compile</scope>
      <exclusions>
        <exclusion>
          <artifactId>playerglobal</artifactId>
          <groupId>com.adobe.flex.framework</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.puremvc</groupId>
      <artifactId>PureMVC_AS3_MultiCore</artifactId>
      <version>1.0.5</version>
      <type>swc</type>
      <scope>rsl</scope>
    </dependency>
    <dependency>
      <groupId>com.xyz</groupId>
      <artifactId>Lib1</artifactId>
      <version>11.07-SNAPSHOT</version>
      <type>swc</type>
      <scope>rsl</scope>
    </dependency>
    <dependency>
      <groupId>com.xyz</groupId>
      <artifactId>Lib2</artifactId>
      <version>11.07-SNAPSHOT</version>
      <type>swc</type>
      <scope>rsl</scope>
    </dependency>
    <dependency>
      <groupId>com.xyz</groupId>
      <artifactId>Lib3</artifactId>
      <version>11.07-SNAPSHOT</version>
      <type>swc</type>
      <scope>rsl</scope>
    </dependency>
    <dependency>
      <groupId>com.amcharts</groupId>
      <artifactId>amCharts</artifactId>
      <version>1.7.2.2</version>
      <type>swc</type>
      <classifier>FB4</classifier>
      <scope>merged</scope>
    </dependency>
    <dependency>
      <groupId>flexlib</groupId>
      <artifactId>flexlib</artifactId>
      <version>2.5</version>
      <type>swc</type>
      <classifier>flex4</classifier>
      <scope>merged</scope>
    </dependency>
    <dependency>
      <groupId>com.adobe.flexunit</groupId>
      <artifactId>flexunit</artifactId>
      <version>4.0-rc-1</version>
      <type>swc</type>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <sourceDirectory>src\main\flex</sourceDirectory>
    <scriptSourceDirectory>src\main\scripts</scriptSourceDirectory>
    <testSourceDirectory>src\test\flex</testSourceDirectory>
    <outputDirectory>target\classes</outputDirectory>
    <testOutputDirectory>target\test-classes</testOutputDirectory>
    <resources>
      <resource>
        <directory>src\main\resources</directory>
      </resource>
    </resources>
    <testResources>
      <testResource>
        <directory>src\test\resources</directory>
      </testResource>
    </testResources>
    <directory>target</directory>
    <finalName>ApplicationSWF</finalName>
      <plugin>
        <groupId>org.sonatype.flexmojos</groupId>
        <artifactId>flexmojos-maven-plugin</artifactId>
        <version>4.0-beta-7</version>
        <extensions>true</extensions>
        <executions>
          <execution>
            <id>default-compile-swf</id>
            <phase>compile</phase>
            <goals>
              <goal>compile-swf</goal>
            </goals>
          </execution>
        </executions>
        <dependencies>
          <dependency>
            <groupId>org.sonatype.flexmojos</groupId>
            <artifactId>flexmojos-threadlocaltoolkit-wrapper</
artifactId>
            <version>4.0-beta-7</version>
            <scope>compile</scope>
          </dependency>
          <dependency>
            <groupId>com.adobe.flex</groupId>
            <artifactId>compiler</artifactId>
            <version>4.5.0.20967</version>
            <type>pom</type>
            <scope>compile</scope>
          </dependency>
        </dependencies>
        <configuration>
          <swfVersion>11</swfVersion>
          <sourceFile>ApplicationSWF.mxml</sourceFile>
          <loadConfig>applicationDomain.xml</loadConfig>
          <localesSourcePath>target/locales/{locale}</
localesSourcePath>
          <localesCompiled>
            <locale>en</locale>
          </localesCompiled>
          <filtering>true</filtering>
          <debug>true</debug>
          <rslUrls>
            <url>rsl/{artifactId}-{version}.{extension}</url>
          </rslUrls>
          <mobile>false</mobile>
          <isolateStyles>true</isolateStyles>
          <keepAllTypeSelectors>true</keepAllTypeSelectors>
          <removeUnusedRsls>false</removeUnusedRsls>
          <fonts>
            <advancedAntiAliasing>true</advancedAntiAliasing>
            <managers>
              <manager-class>flash.fonts.JREFontManager</manager-
class>
              <manager-class>flash.fonts.BatikFontManager</manager-
class>
              <manager-class>flash.fonts.AFEFontManager</manager-
class>
              <manager-class>flash.fonts.CFFFontManager</manager-
class>
            </managers>
          </fonts>
          <staticLinkRuntimeSharedLibraries>false</
staticLinkRuntimeSharedLibraries>
          <compilerWarnings>
            <show-shadowed-device-font-warnings>false</show-shadowed-
device-font-warnings>
            <show-unused-type-selector-warnings>false</show-unused-
type-selector-warnings>
            <warn-array-tostring-changes>false</warn-array-tostring-
changes>
            <warn-assignment-within-conditional>true</warn-assignment-
within-conditional>
            <warn-bad-array-cast>true</warn-bad-array-cast>
            <warn-bad-bool-assignment>true</warn-bad-bool-assignment>
            <warn-bad-date-cast>true</warn-bad-date-cast>
            <warn-bad-es3-type-method>true</warn-bad-es3-type-method>
            <warn-bad-es3-type-prop>true</warn-bad-es3-type-prop>
            <warn-bad-nan-comparison>true</warn-bad-nan-comparison>
            <warn-bad-null-assignment>true</warn-bad-null-assignment>
            <warn-bad-null-comparison>true</warn-bad-null-comparison>
            <warn-bad-undefined-comparison>true</warn-bad-undefined-
comparison>
            <warn-boolean-constructor-with-no-args>false</warn-boolean-
constructor-with-no-args>
            <warn-changes-in-resolve>false</warn-changes-in-resolve>
            <warn-class-is-sealed>true</warn-class-is-sealed>
            <warn-const-not-initialized>true</warn-const-not-
initialized>
            <warn-constructor-returns-value>false</warn-constructor-
returns-value>
            <warn-deprecated-event-handler-error>false</warn-
deprecated-event-handler-error>
            <warn-deprecated-function-error>true</warn-deprecated-
function-error>
            <warn-deprecated-property-error>true</warn-deprecated-
property-error>
            <warn-duplicate-argument-names>true</warn-duplicate-
argument-names>
            <warn-duplicate-variable-def>true</warn-duplicate-variable-
def>
            <warn-for-var-in-changes>false</warn-for-var-in-changes>
            <warn-import-hides-class>true</warn-import-hides-class>
            <warn-instance-of-changes>true</warn-instance-of-changes>
            <warn-internal-error>true</warn-internal-error>
            <warn-level-not-supported>true</warn-level-not-supported>
            <warn-missing-namespace-decl>true</warn-missing-namespace-
decl>
            <warn-negative-uint-literal>true</warn-negative-uint-
literal>
            <warn-no-constructor>false</warn-no-constructor>
            <warn-no-explicit-super-call-in-constructor>false</warn-no-
explicit-super-call-in-constructor>
            <warn-no-type-decl>true</warn-no-type-decl>
            <warn-number-from-string-changes>false</warn-number-from-
string-changes>
            <warn-scoping-change-in-this>false</warn-scoping-change-in-
this>
            <warn-slow-text-field-addition>true</warn-slow-text-field-
addition>
            <warn-unlikely-function-value>true</warn-unlikely-function-
value>
            <warn-xml-class-has-changed>false</warn-xml-class-has-
changed>
          </compilerWarnings>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>



On Jun 29, 7:44 pm, justinjmoses <[email protected]> wrote:
> Sounds like you're on the right track. IResponder comes from the
> framework.swc dependency - what does your POM look like?
>
> Are you getting the rsls deployed along with your SWF artifact?

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