I have 4 flex project,3 are modules,1 is application. compile these project with Flash Builder,integrate and run,is ok. But when I compile these use maven script(Flex SDK merged into code).integrate and run,pop up error: VerifyError: Error #1014: Class mx.controls::List could not be found.
Somebody said because a library was loaded as external. is that playerglobal.swc???? but after I change my pom.xml like this,seem like nothing changed.
<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>
mx/mx.swc
. – RIAstar