codecraig
|
 |
« on: August 01, 2008, 04:12:21 » |
|
I have a Flex project in FlexBuilder3 which also has a pom.xml. I have added the following to my pom.xml:
<dependency> <groupId>org.puremvc</groupId> <artifactId>puremvc_as3</artifactId> <version>2.0.3</version> <classifier>swc</classifier> </dependency>
However, FlexBuilder gives me two errors: 1017: The definition of base class Facade was not found. 1020: Method marked override must override another method.
The lines of code that those two errors reference to, respectively, are:
public class ApplicationFacade extends Facade
and
override protected function initializeController():void {
Do I need to add PureMVC to my "Flex Build Path" (i.e. under the "Properties" for my Flex project)? If so, I thought by having Maven include the dependency I didn't need to do that.
Thanks!
|