获取“错误:无法解析“/assets/images/**.png”用于转码”在 FlexMojos 4.0-RC2 和 Flex SDK 4.5.1.21328 上构建时

发布于 2024-12-09 22:10:54 字数 421 浏览 0 评论 0原文

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

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

SDK 版本

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

Flex Mojos 版本

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

感谢您的帮助。

I get the this "Error: unable to resolve '/assets/images/**.png' for transcoding" while building on FlexMojos 4.0-RC2 and Flex SDK 4.5.1.21328. Code is like below

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

SDK version

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

Flex Mojos version

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

Thanks for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谈下烟灰 2024-12-16 22:10:54

之前需要专门添加flexmojos-threadlocaltoolkit-wrapper的依赖
编译器依赖性。

请参阅以下页面了解更多详细信息:
https://dev.c-ware.de/confluence/display /PUBLIC/配置+你的+poms

You need to specifically add a dependency for flexmojos-threadlocaltoolkit-wrapper before
the compiler dependency.

See the following page for more details:
https://dev.c-ware.de/confluence/display/PUBLIC/Configuring+your+poms

意中人 2024-12-16 22:10:54

我使用的是相同版本的 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>

I'm using the same version of the Flex SDK, but I'm using flexmojos 4.0-RC2. Embedded assets are working fine for me.

Make sure that when you build, you're copying the embedded assets over into target/classes. I had to include some special configuration for that.

<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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文