7

使用 flexmojos 编译时,我收到警告:

[警告] 部分或任何 scope="theme" 依赖项中没有明确定义主题。Flexmojos 现在正试图找出要包含哪些主题。(为避免此警告,您应该明确说明您的主题依赖项)

[警告] 添加 spark.css 主题,因为 spark.swc 作为依赖项包含在内

我试过添加:

<dependency>
    <groupId>com.adobe.flex.framework</groupId>
    <artifactId>spark</artifactId>
    <type>swc</type>
    <scope>theme</scope>
    <version>${flex.sdk.version}</version>
</dependency>

但我只是得到一个错误:

com.adobe.flex.framework:spark:swc 必须是 [compile, runtime, system] 之一,但它是“主题”

我只想使用标准的 Spark 主题。

谢谢

4

3 回答 3

2

我遇到了同样的问题(添加主题有效,但会产生难看的警告)。我通过显式引用主题的 CSS 文件来修复它:

  1. 将以下内容添加到您的 flexmojos 配置中:

    <themes>
        <theme>spark-theme-${flex.sdk.version}.css</theme>
    </themes>
    
  2. 将主题添加为依赖项:

    <dependency>
        <groupId>com.adobe.flex.framework</groupId>
        <artifactId>spark-theme</artifactId>
        <version>${flex.sdk.version}</version>
        <type>css</type>
    </dependency>
    
  3. 将依赖项拉入您的输出目录。有几种方法可以做到这一点,包括一个简单的蚂蚁副本。我选择使用maven依赖插件:

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-dependency-plugin</artifactId>
        <executions>
            <execution>
                <id>copy-theme-file</id>
                <phase>process-resources</phase>
                <goals>
                    <goal>copy-dependencies</goal>
                </goals>
                <configuration>
                    <outputDirectory>${project.build.outputDirectory}</outputDirectory>
                    <includeArtifactIds>spark-theme</includeArtifactIds>
                </configuration>
            </execution>
        </executions>
    </plugin>
    

按照这些步骤,将 spark-theme 的 CSS 文件复制到输出目录(大多数情况下是 /target/classes),并在 flexmojos 配置中明确引用 CSS 文件。

这完全摆脱了我的所有主题警告。我希望这可以帮助别人。

于 2011-11-29T18:12:32.063 回答
0

我正在使用 Flex-Mojos 4.1-beta,并且主题“正常工作”™ 我不能保证早期版本。

举个例子,拉入 spark 主题(SDK 的一部分):

   <dependency>
        <groupId>com.adobe.flex.framework</groupId>
        <artifactId>spark</artifactId>
        <version>${flex.version}</version>
        <scope>theme</scope>
        <type>swc</type>
    </dependency>

现在,引入我之前定义的主题:

    <dependency>
        <groupId>ie.hunt</groupId>
        <artifactId>theme-library</artifactId>
        <version>1.0-SNAPSHOT</version>
        <type>swc</type>
        <scope>theme</scope>
    </dependency>

并且应用了“火花”主题,然后被我在自己的主题 swc 中定义的规则覆盖。没有别的事可做。

使用“插件”->“配置”的“主题”小节会创建无用的空指针异常,例如:

 <configuration>
 <themes>
  <theme>spark.css</theme>
 <themes>
 ...
 </configuration>

错误输出:

 [ERROR] Failed to execute goal org.sonatype.flexmojos:flexmojos-maven-plugin:4.1-beta:compile-swc (default-compile-swc) on project theme-library: java.lang.NullPointerException -> [Help 1]
于 2012-02-01T12:09:09.830 回答
0

或者,这个答案更简单(只需考虑在pom的dependencyManagementdependencies标签中声明它

于 2013-12-26T13:16:39.433 回答