Yes, I added a dependency on the Effects project to CreateJS so that the
CreateJS SWF side would be able to look similar to SWF side. I changed the
dependency in the upper build xml file.

What's necessary to get it work for Maven?
‹peter

On 7/26/16, 4:37 PM, "Christofer Dutz" <christofer.d...@c-ware.de> wrote:

>Hi,
>
>
>starting my last update from today the CreateJS module has started
>producing compile errors:
>
>
>[INFO] --- flexjs-maven-plugin:0.7.0-SNAPSHOT:compile-as
>(default-compile-as) @ CreateJS ---
>[INFO] Executing COMPC in tool group Falcon with args:
>[-load-config=/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/framewo
>rks/projects/CreateJS/target/compile-as-config.xml]
>Loading configuration:
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/target/compile-as-config.xml
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:34
>Warning: Definition org.apache.flex.effects.IEffect could not be found.
>import org.apache.flex.effects.IEffect;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:35
>Warning: Definition org.apache.flex.effects.Sequence could not be found.
>import org.apache.flex.effects.Sequence;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:36
>Warning: Definition org.apache.flex.effects.Parallel could not be found.
>import org.apache.flex.effects.Parallel;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:37
>Warning: Definition org.apache.flex.effects.Fade could not be found.
>import org.apache.flex.effects.Fade;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:38
>Warning: Definition org.apache.flex.effects.Move could not be found.
>import org.apache.flex.effects.Move;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:68
>Error: Call to a possibly undefined method Sequence.
>_sequence = new org.apache.flex.effects.Sequence();
>               ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:94
>Error: Type was not found or was not a compile-time constant:
>org.apache.flex.effects.Sequence.
>private var _sequence:org.apache.flex.effects.Sequence;
>                     ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:97
>Error: Type was not found or was not a compile-time constant: IEffect.
>public function internalEffect():IEffect
>                                ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:117
>Error: Type was not found or was not a compile-time constant: IEffect.
>var para:IEffect = tween.internalEffect();
>        ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:32
>Warning: Definition org.apache.flex.effects.IEffect could not be found.
>import org.apache.flex.effects.IEffect;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:33
>Warning: Definition org.apache.flex.effects.Parallel could not be found.
>import org.apache.flex.effects.Parallel;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:34
>Warning: Definition org.apache.flex.effects.Fade could not be found.
>import org.apache.flex.effects.Fade;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:35
>Warning: Definition org.apache.flex.effects.Move could not be found.
>import org.apache.flex.effects.Move;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:65
>Error: Call to a possibly undefined method Parallel.
>_parallel = new Parallel();
>               ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:140
>Error: Type was not found or was not a compile-time constant: Move.
>var move:Move = new Move();
>        ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:140
>Error: Call to a possibly undefined method Move.
>var move:Move = new Move();
>                   ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:148
>Error: Type was not found or was not a compile-time constant: Fade.
>var fade:Fade = new Fade();
>        ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:148
>Error: Call to a possibly undefined method Fade.
>var fade:Fade = new Fade();
>                   ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:165
>Error: Type was not found or was not a compile-time constant: Parallel.
>private var _parallel:Parallel;
>                     ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:168
>Error: Type was not found or was not a compile-time constant: IEffect.
>public function internalEffect():IEffect
>                                ^
>
>Would be great if this could be fixed.
>
>
>Chris

Reply via email to