2

在 FlexMojos 4.0-RC2 和 Flex SDK 4.5.1.21328 上构建时,我收到此“错误:无法解析 '/assets/images/**.png' 进行转码”。代码如下

 [Embed(source='/assets/images/lot_dimensions_bg_4digit.png')]

开发工具包版本

<flex.sdk.version>4.5.1.21328</flex.sdk.version>

Flex Mojos 版本

<flex-mojos.version>4.0-beta-7</flex-mojos.version>

谢谢你的帮助。

4

2 回答 2

3

您需要在编译器依赖项之前专门为 flexmojos-threadlocaltoolkit-wrapper 添加一个依赖项。

有关详细信息,请参阅以下页面: https ://dev.c-ware.de/confluence/display/PUBLIC/Configuring+your+poms

于 2011-11-02T19:42:54.347 回答
0

我使用的是相同版本的 Flex SDK,但我使用的是 flexmojos 4.0-RC2。嵌入式资产对我来说工作正常。

确保在构建时将嵌入的资产复制到目标/类中。我必须为此添加一些特殊配置。

<plugin>
    <groupId>org.sonatype.flexmojos</groupId>
    <artifactId>flexmojos-maven-plugin</artifactId>
    <version>${flexmojos.version}</version>
    <extensions>true</extensions>
    <configuration>
        <debug>true</debug>
        <configurationReport>true</configurationReport>
        <sourceFile>com/example/MyApp.mxml</sourceFile>
        <swfVersion>11</swfVersion>
        <flexBuilderCompatibility>true</flexBuilderCompatibility>
        <descriptorTemplate>${basedir}/${application.name}-app.xml</descriptorTemplate>

        <!-- Here's the extra config -->
        <includeFileSets>
            <fileset>
                <directory>src/main/resources/embedded</directory>
                <includes>
                    <include>*.*</include>
                </includes>
            </fileset>
        </includeFileSets>
    </configuration>
</plugin>
于 2011-11-09T09:37:29.113 回答