-
Dec 4th, 2011, 06:57 PM
#1
errors when running mvn clean test on SAS 2.0
Hi guys,
I'm using SAS 2.0 for a framework that I'm building. I discovered some issues when trying to run mvn clean test on the latest trunk.
First, in FieldRetrievingFactoryObjectTest.as there's an import of spark.components.Application that needs to be removed.
Second, the TestRunner has skin dependencies that need to be added to avoid errors like the following:
_TestRunner_Styles.as(1224): col: 50 Error: Access of undefined property BorderSkin.
I got past that by adding the following:
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>spark</artifactId>
<version>${flex-sdk.version}</version>
<type>swc</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.adobe.flex.framework</groupId>
<artifactId>sparkskins</artifactId>
<version>${flex-sdk.version}</version>
<type>swc</type>
<scope>test</scope>
</dependency>
Now that I'm past that, FlexMojos can't find FlashPlayer. We use an older version of FM that doesn't have that problem, so my next challenge is to figure out what has changed. Hopefully that's the last issue!
Cheers,
Tom
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules