我有 4 个 flex 项目,3 个是模块,1 个是应用程序。用Flash Builder编译这些项目,集成运行,就ok了。但是当我编译这些使用 maven 脚本(Flex SDK 合并到代码中)。集成并运行时,弹出错误:VerifyError: Error #1014: Class mx.controls::List could not be found。
有人说是因为库是作为外部加载的。那是playerglobal.swc???但是在我像这样更改我的 pom.xml 之后,似乎没有任何改变。
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>playerglobal</artifactId>
<version>${flex.sdk.version}</version>
<type>rb.swc</type>
<classifier>en_US</classifier>
<scope>external</scope>
</dependency>