When using the maven flexmojos plug in to compile an swf project I get
the following error:

[ERROR] C:\Documents and Settings\clubin\.m2\repository\org
\springextensions\actionscript\spring-actionscript-core\0.8.1\spring-
actionscript-core
-0.8.1.swc(org/springextensions/actionscript/utils/ObjectUtils):
[-1,-1] Type was not found or was not a compile-time constant: Type.
[ERROR] C:\Documents and Settings\clubin\.m2\repository\org
\springextensions\actionscript\spring-actionscript-core\0.8.1\spring-
actionscript-core
-0.8.1.swc(org/springextensions/actionscript/ioc/ObjectDefinition):
[-1,-1] Type was not found or was not a compile-time constant:
[org.as3commons
.lang]::IEquals.
[ERROR] C:\Documents and Settings\clubin\.m2\repository\org
\springextensions\actionscript\spring-actionscript-core\0.8.1\spring-
actionscript-core
-0.8.1.swc(org/springextensions/actionscript/context/support/mxml/
AbstractMXMLObject):[-1,-1] Type was not found or was not a compile-
time consta
nt: [org.as3commons.lang]::ICloneable.

My pom is using springactionscript swc like so:

         <dependency>
            <groupId>org.springextensions.actionscript</groupId>
            <artifactId>spring-actionscript-core</artifactId>
            <version>0.8.1</version>
            <type>swc</type>
            <scope>compile</scope>
        </dependency>

Pointing to the following repositories:

          <repository>
            <id>yoolab.org-releases</id>
            <url>http://projects.yoolab.org/maven/content/repositories/
releases</url>
            <releases>
                <enabled>true</enabled>
            </releases>
        </repository>
        <repository>
            <id>yoolab.org-snapshots</id>
            <url>http://projects.yoolab.org/maven/content/repositories/
snapshots</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>

The flexmojos plug in setup is:
Note: flexmojos.version = 3.4.2, flex.vresion=3.2.0

             <plugin>
                <groupId>org.sonatype.flexmojos</groupId>
                <artifactId>flexmojos-maven-plugin</artifactId>
                <version>${flexmojos.version}</version>
                <dependencies>
                    <dependency>
                        <groupId>com.adobe.flex</groupId>
                        <artifactId>compiler</artifactId>
                        <version>${flex.version}.3958</version>
                        <type>pom</type>
                    </dependency>
                </dependencies>
                <executions>
                    <execution>
                        <goals>
                            <goal>wrapper</goal>
                        </goals>
                    </execution>
                </executions>
                <extensions>true</extensions>
                <configuration>
                    <locales>
                        <locale>en_US</locale>
                    </locales>
                    <debug>true</debug>
                    <configurationReport>true</configurationReport>
                </configuration>
            </plugin>

The flexmojos compiler is set as:
Note: flexmojos.version = 3.4.2, flex.vresion=3.2.0

         <dependency>
            <groupId>com.adobe.flex.framework</groupId>
            <artifactId>flex-framework</artifactId>
            <version>${flex.version}.3958</version>
            <type>pom</type>
            <scope>compile</scope>
        </dependency>


Any help would be appreciated.

-- 
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?hl=en?hl=en

http://blog.flex-mojos.info/

Reply via email to