使用 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 主题。
谢谢