Hello
I develop a flex 2 application and I'm trying to migrate it from maven
1 to maven 2, using the plugin "israfil mojo".
I managed to compile flex libraries into swc files, but they are not
well formed. There's a problem in the catalog.xml.
In the script tag for each actionscript class, there's no package
before the class name. Here is an example :
<libraries>
<library path="library.swf">
<script name="FileImportLink" mod="1171975185000" >
<def id="com.test:FileImportLink" />
Notice the def is correct; it is the package com.test!
But it should be (well, I think so...) :
<libraries>
<library path="library.swf">
<script name="com/test/FileImportLink" mod="1171975185000" >
<def id="com.test:FileImportLink" />
And somthing weird in the file : The basic classes are correct :
<script name="mx/utils/ObjectUtil" mod="1153876826000" >
<def id="mx.utils:ObjectUtil" />
<dep id="Object" type="i" />
Is there an option to set in the pom.xml? or maybe in the
flex-config.xml ?
Regards