You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by Christofer Dutz <ch...@c-ware.de> on 2014/10/10 11:00:34 UTC

First working compilation of a flex project using flexmojos and falcon

Hi guys,


today I am proud to report that I just had the first working compilation of a flexmojos module using falcon:


/Library/Java/JavaVirtualMachines/jdk1.7.0_65.jdk/Contents/Home/bin/java -Dmaven.home=/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1 -Dclassworlds.conf=/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1/bin/m2.conf -Didea.launcher.port=7534 "-Didea.launcher.bin.path=/Applications/IntelliJ IDEA 13.app/Contents/bin" -Dfile.encoding=UTF-8 -classpath "/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1/boot/plexus-classworlds-2.5.1.jar:/Applications/IntelliJ IDEA 13.app/Contents/lib/idea_rt.jar" com.intellij.rt.execution.application.AppMain org.codehaus.classworlds.Launcher -Didea.version=13.1.5 --errors -DskipTests=true clean install
[INFO] Error stacktraces are turned on.
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building hello-spark 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ hello-spark ---
[INFO] Deleting /Users/christoferdutz/Projects/Flexmojos/hello-spark/target
[INFO]
[INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ hello-spark ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /Users/christoferdutz/Projects/Flexmojos/hello-spark/src/main/resources
[INFO]
[INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:compile-swf (default-compile-swf) @ hello-spark ---
[INFO] Flexmojos 7.1.0-SNAPSHOT
[INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
[WARNING] No themes are explicitly defined in the <theme> section or in any scope="theme" dependencies. Flexmojos is now attempting to figure out which themes to include. (to avoid this warning you should explicitly state your theme dependencies)
[WARNING] Adding spark theme because spark.swc was included as a dependency

252394 bytes written to /Users/christoferdutz/Projects/Flexmojos/hello-spark/target/hello-spark-1.0-SNAPSHOT.swf in 4,913 seconds
[INFO]
[INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ hello-spark ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /Users/christoferdutz/Projects/Flexmojos/hello-spark/src/test/resources
[INFO]
[INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:test-compile (default-test-compile) @ hello-spark ---
[INFO] Flexmojos 7.1.0-SNAPSHOT
[INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
[INFO] Skipping compiler, test source path doesn't exist.
[INFO]
[INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:test-run (default-test-run) @ hello-spark ---
[INFO] Flexmojos 7.1.0-SNAPSHOT
[INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
[INFO] Skipping test phase.
[INFO]
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ hello-spark ---
[INFO] Installing /Users/christoferdutz/Projects/Flexmojos/hello-spark/target/hello-spark-1.0-SNAPSHOT.swf to /Users/christoferdutz/.m2/repository/info/rvin/itest/hello-spark/1.0-SNAPSHOT/hello-spark-1.0-SNAPSHOT.swf
[INFO] Installing /Users/christoferdutz/Projects/Flexmojos/hello-spark/pom.xml to /Users/christoferdutz/.m2/repository/info/rvin/itest/hello-spark/1.0-SNAPSHOT/hello-spark-1.0-SNAPSHOT.pom
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6.980s
[INFO] Finished at: Fri Oct 10 10:53:44 CEST 2014
[INFO] Final Memory: 23M/455M
[INFO] ------------------------------------------------------------------------

Process finished with exit code 0


One thing I did notice, was that when executing the Falcon MXMLC I have to strip out any empty arguments from the argument list. Flexmojos generated an argument list containing two empty arguments:

-load-config=
-compiler.include-libraries=

If I remove them in general the old compiler complains. So I remove them only when executing Falcon.
Just wanted to report this, just in case this might be a problem.

Chris



RE: AW: First working compilation of a flex project using flexmojos and falcon

Posted by Frédéric THOMAS <we...@hotmail.com>.
All right, good to know, well done, congrats and thanks for the update.

Frédéric THOMAS

> From: christofer.dutz@c-ware.de
> To: dev@flex.apache.org
> Subject: AW: First working compilation of a flex project using flexmojos and falcon
> Date: Fri, 10 Oct 2014 11:17:58 +0000
> 
> Well I sort of stalled that for the moment.
> I just finished a working on TomEE and yesterday I got the mail from the PMD team-lead that based on my PMD refactoring he now officially modularized PMD ... as soon as that's really out of the box, I would migrate our PMD rules to work in the official PMD ecosystem instead of maintaining our own. As soon as that's done I think I'll contact the JBurg guy again regarding the JBurg 2.0 release. As soon as that's done I could finish the Antlr4 refactoring of Falcon ....
> 
> But I have to admit that currently I'm concentrating on what I need done for my talk and workshop at the ApacheCon .... currently I could only talk about theoretical options ;-)
> 
> Chris
> 
> ________________________________________
> Von: Frédéric THOMAS <we...@hotmail.com>
> Gesendet: Freitag, 10. Oktober 2014 11:45
> An: dev@flex.apache.org
> Betreff: RE: First working compilation of a flex project using flexmojos and falcon
> 
> Great !! :-)
> Btw, any progress about JBurg and the Maven / Falcon branch you was working on ?
> 
> Thanks,
> Frédéric THOMAS
> 
> > From: christofer.dutz@c-ware.de
> > To: dev@flex.apache.org
> > Subject: First working compilation of a flex project using flexmojos and falcon
> > Date: Fri, 10 Oct 2014 09:00:34 +0000
> >
> > Hi guys,
> >
> >
> > today I am proud to report that I just had the first working compilation of a flexmojos module using falcon:
> >
> >
> > /Library/Java/JavaVirtualMachines/jdk1.7.0_65.jdk/Contents/Home/bin/java -Dmaven.home=/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1 -Dclassworlds.conf=/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1/bin/m2.conf -Didea.launcher.port=7534 "-Didea.launcher.bin.path=/Applications/IntelliJ IDEA 13.app/Contents/bin" -Dfile.encoding=UTF-8 -classpath "/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1/boot/plexus-classworlds-2.5.1.jar:/Applications/IntelliJ IDEA 13.app/Contents/lib/idea_rt.jar" com.intellij.rt.execution.application.AppMain org.codehaus.classworlds.Launcher -Didea.version=13.1.5 --errors -DskipTests=true clean install
> > [INFO] Error stacktraces are turned on.
> > [INFO] Scanning for projects...
> > [INFO]
> > [INFO] ------------------------------------------------------------------------
> > [INFO] Building hello-spark 1.0-SNAPSHOT
> > [INFO] ------------------------------------------------------------------------
> > [INFO]
> > [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ hello-spark ---
> > [INFO] Deleting /Users/christoferdutz/Projects/Flexmojos/hello-spark/target
> > [INFO]
> > [INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ hello-spark ---
> > [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
> > [INFO] skip non existing resourceDirectory /Users/christoferdutz/Projects/Flexmojos/hello-spark/src/main/resources
> > [INFO]
> > [INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:compile-swf (default-compile-swf) @ hello-spark ---
> > [INFO] Flexmojos 7.1.0-SNAPSHOT
> > [INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> > [WARNING] No themes are explicitly defined in the <theme> section or in any scope="theme" dependencies. Flexmojos is now attempting to figure out which themes to include. (to avoid this warning you should explicitly state your theme dependencies)
> > [WARNING] Adding spark theme because spark.swc was included as a dependency
> >
> > 252394 bytes written to /Users/christoferdutz/Projects/Flexmojos/hello-spark/target/hello-spark-1.0-SNAPSHOT.swf in 4,913 seconds
> > [INFO]
> > [INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ hello-spark ---
> > [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
> > [INFO] skip non existing resourceDirectory /Users/christoferdutz/Projects/Flexmojos/hello-spark/src/test/resources
> > [INFO]
> > [INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:test-compile (default-test-compile) @ hello-spark ---
> > [INFO] Flexmojos 7.1.0-SNAPSHOT
> > [INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> > [INFO] Skipping compiler, test source path doesn't exist.
> > [INFO]
> > [INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:test-run (default-test-run) @ hello-spark ---
> > [INFO] Flexmojos 7.1.0-SNAPSHOT
> > [INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> > [INFO] Skipping test phase.
> > [INFO]
> > [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ hello-spark ---
> > [INFO] Installing /Users/christoferdutz/Projects/Flexmojos/hello-spark/target/hello-spark-1.0-SNAPSHOT.swf to /Users/christoferdutz/.m2/repository/info/rvin/itest/hello-spark/1.0-SNAPSHOT/hello-spark-1.0-SNAPSHOT.swf
> > [INFO] Installing /Users/christoferdutz/Projects/Flexmojos/hello-spark/pom.xml to /Users/christoferdutz/.m2/repository/info/rvin/itest/hello-spark/1.0-SNAPSHOT/hello-spark-1.0-SNAPSHOT.pom
> > [INFO] ------------------------------------------------------------------------
> > [INFO] BUILD SUCCESS
> > [INFO] ------------------------------------------------------------------------
> > [INFO] Total time: 6.980s
> > [INFO] Finished at: Fri Oct 10 10:53:44 CEST 2014
> > [INFO] Final Memory: 23M/455M
> > [INFO] ------------------------------------------------------------------------
> >
> > Process finished with exit code 0
> >
> >
> > One thing I did notice, was that when executing the Falcon MXMLC I have to strip out any empty arguments from the argument list. Flexmojos generated an argument list containing two empty arguments:
> >
> > -load-config=
> > -compiler.include-libraries=
> >
> > If I remove them in general the old compiler complains. So I remove them only when executing Falcon.
> > Just wanted to report this, just in case this might be a problem.
> >
> > Chris
> >
> >
 		 	   		  

AW: First working compilation of a flex project using flexmojos and falcon

Posted by Christofer Dutz <ch...@c-ware.de>.
Well I sort of stalled that for the moment.
I just finished a working on TomEE and yesterday I got the mail from the PMD team-lead that based on my PMD refactoring he now officially modularized PMD ... as soon as that's really out of the box, I would migrate our PMD rules to work in the official PMD ecosystem instead of maintaining our own. As soon as that's done I think I'll contact the JBurg guy again regarding the JBurg 2.0 release. As soon as that's done I could finish the Antlr4 refactoring of Falcon ....

But I have to admit that currently I'm concentrating on what I need done for my talk and workshop at the ApacheCon .... currently I could only talk about theoretical options ;-)

Chris

________________________________________
Von: Frédéric THOMAS <we...@hotmail.com>
Gesendet: Freitag, 10. Oktober 2014 11:45
An: dev@flex.apache.org
Betreff: RE: First working compilation of a flex project using flexmojos and falcon

Great !! :-)
Btw, any progress about JBurg and the Maven / Falcon branch you was working on ?

Thanks,
Frédéric THOMAS

> From: christofer.dutz@c-ware.de
> To: dev@flex.apache.org
> Subject: First working compilation of a flex project using flexmojos and falcon
> Date: Fri, 10 Oct 2014 09:00:34 +0000
>
> Hi guys,
>
>
> today I am proud to report that I just had the first working compilation of a flexmojos module using falcon:
>
>
> /Library/Java/JavaVirtualMachines/jdk1.7.0_65.jdk/Contents/Home/bin/java -Dmaven.home=/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1 -Dclassworlds.conf=/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1/bin/m2.conf -Didea.launcher.port=7534 "-Didea.launcher.bin.path=/Applications/IntelliJ IDEA 13.app/Contents/bin" -Dfile.encoding=UTF-8 -classpath "/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1/boot/plexus-classworlds-2.5.1.jar:/Applications/IntelliJ IDEA 13.app/Contents/lib/idea_rt.jar" com.intellij.rt.execution.application.AppMain org.codehaus.classworlds.Launcher -Didea.version=13.1.5 --errors -DskipTests=true clean install
> [INFO] Error stacktraces are turned on.
> [INFO] Scanning for projects...
> [INFO]
> [INFO] ------------------------------------------------------------------------
> [INFO] Building hello-spark 1.0-SNAPSHOT
> [INFO] ------------------------------------------------------------------------
> [INFO]
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ hello-spark ---
> [INFO] Deleting /Users/christoferdutz/Projects/Flexmojos/hello-spark/target
> [INFO]
> [INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ hello-spark ---
> [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
> [INFO] skip non existing resourceDirectory /Users/christoferdutz/Projects/Flexmojos/hello-spark/src/main/resources
> [INFO]
> [INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:compile-swf (default-compile-swf) @ hello-spark ---
> [INFO] Flexmojos 7.1.0-SNAPSHOT
> [INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> [WARNING] No themes are explicitly defined in the <theme> section or in any scope="theme" dependencies. Flexmojos is now attempting to figure out which themes to include. (to avoid this warning you should explicitly state your theme dependencies)
> [WARNING] Adding spark theme because spark.swc was included as a dependency
>
> 252394 bytes written to /Users/christoferdutz/Projects/Flexmojos/hello-spark/target/hello-spark-1.0-SNAPSHOT.swf in 4,913 seconds
> [INFO]
> [INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ hello-spark ---
> [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
> [INFO] skip non existing resourceDirectory /Users/christoferdutz/Projects/Flexmojos/hello-spark/src/test/resources
> [INFO]
> [INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:test-compile (default-test-compile) @ hello-spark ---
> [INFO] Flexmojos 7.1.0-SNAPSHOT
> [INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> [INFO] Skipping compiler, test source path doesn't exist.
> [INFO]
> [INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:test-run (default-test-run) @ hello-spark ---
> [INFO] Flexmojos 7.1.0-SNAPSHOT
> [INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> [INFO] Skipping test phase.
> [INFO]
> [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ hello-spark ---
> [INFO] Installing /Users/christoferdutz/Projects/Flexmojos/hello-spark/target/hello-spark-1.0-SNAPSHOT.swf to /Users/christoferdutz/.m2/repository/info/rvin/itest/hello-spark/1.0-SNAPSHOT/hello-spark-1.0-SNAPSHOT.swf
> [INFO] Installing /Users/christoferdutz/Projects/Flexmojos/hello-spark/pom.xml to /Users/christoferdutz/.m2/repository/info/rvin/itest/hello-spark/1.0-SNAPSHOT/hello-spark-1.0-SNAPSHOT.pom
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD SUCCESS
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 6.980s
> [INFO] Finished at: Fri Oct 10 10:53:44 CEST 2014
> [INFO] Final Memory: 23M/455M
> [INFO] ------------------------------------------------------------------------
>
> Process finished with exit code 0
>
>
> One thing I did notice, was that when executing the Falcon MXMLC I have to strip out any empty arguments from the argument list. Flexmojos generated an argument list containing two empty arguments:
>
> -load-config=
> -compiler.include-libraries=
>
> If I remove them in general the old compiler complains. So I remove them only when executing Falcon.
> Just wanted to report this, just in case this might be a problem.
>
> Chris
>
>

RE: First working compilation of a flex project using flexmojos and falcon

Posted by Frédéric THOMAS <we...@hotmail.com>.
Great !! :-)
Btw, any progress about JBurg and the Maven / Falcon branch you was working on ?

Thanks,
Frédéric THOMAS

> From: christofer.dutz@c-ware.de
> To: dev@flex.apache.org
> Subject: First working compilation of a flex project using flexmojos and falcon
> Date: Fri, 10 Oct 2014 09:00:34 +0000
> 
> Hi guys,
> 
> 
> today I am proud to report that I just had the first working compilation of a flexmojos module using falcon:
> 
> 
> /Library/Java/JavaVirtualMachines/jdk1.7.0_65.jdk/Contents/Home/bin/java -Dmaven.home=/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1 -Dclassworlds.conf=/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1/bin/m2.conf -Didea.launcher.port=7534 "-Didea.launcher.bin.path=/Applications/IntelliJ IDEA 13.app/Contents/bin" -Dfile.encoding=UTF-8 -classpath "/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1/boot/plexus-classworlds-2.5.1.jar:/Applications/IntelliJ IDEA 13.app/Contents/lib/idea_rt.jar" com.intellij.rt.execution.application.AppMain org.codehaus.classworlds.Launcher -Didea.version=13.1.5 --errors -DskipTests=true clean install
> [INFO] Error stacktraces are turned on.
> [INFO] Scanning for projects...
> [INFO]
> [INFO] ------------------------------------------------------------------------
> [INFO] Building hello-spark 1.0-SNAPSHOT
> [INFO] ------------------------------------------------------------------------
> [INFO]
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ hello-spark ---
> [INFO] Deleting /Users/christoferdutz/Projects/Flexmojos/hello-spark/target
> [INFO]
> [INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ hello-spark ---
> [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
> [INFO] skip non existing resourceDirectory /Users/christoferdutz/Projects/Flexmojos/hello-spark/src/main/resources
> [INFO]
> [INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:compile-swf (default-compile-swf) @ hello-spark ---
> [INFO] Flexmojos 7.1.0-SNAPSHOT
> [INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> [WARNING] No themes are explicitly defined in the <theme> section or in any scope="theme" dependencies. Flexmojos is now attempting to figure out which themes to include. (to avoid this warning you should explicitly state your theme dependencies)
> [WARNING] Adding spark theme because spark.swc was included as a dependency
> 
> 252394 bytes written to /Users/christoferdutz/Projects/Flexmojos/hello-spark/target/hello-spark-1.0-SNAPSHOT.swf in 4,913 seconds
> [INFO]
> [INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ hello-spark ---
> [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
> [INFO] skip non existing resourceDirectory /Users/christoferdutz/Projects/Flexmojos/hello-spark/src/test/resources
> [INFO]
> [INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:test-compile (default-test-compile) @ hello-spark ---
> [INFO] Flexmojos 7.1.0-SNAPSHOT
> [INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> [INFO] Skipping compiler, test source path doesn't exist.
> [INFO]
> [INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:test-run (default-test-run) @ hello-spark ---
> [INFO] Flexmojos 7.1.0-SNAPSHOT
> [INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> [INFO] Skipping test phase.
> [INFO]
> [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ hello-spark ---
> [INFO] Installing /Users/christoferdutz/Projects/Flexmojos/hello-spark/target/hello-spark-1.0-SNAPSHOT.swf to /Users/christoferdutz/.m2/repository/info/rvin/itest/hello-spark/1.0-SNAPSHOT/hello-spark-1.0-SNAPSHOT.swf
> [INFO] Installing /Users/christoferdutz/Projects/Flexmojos/hello-spark/pom.xml to /Users/christoferdutz/.m2/repository/info/rvin/itest/hello-spark/1.0-SNAPSHOT/hello-spark-1.0-SNAPSHOT.pom
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD SUCCESS
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 6.980s
> [INFO] Finished at: Fri Oct 10 10:53:44 CEST 2014
> [INFO] Final Memory: 23M/455M
> [INFO] ------------------------------------------------------------------------
> 
> Process finished with exit code 0
> 
> 
> One thing I did notice, was that when executing the Falcon MXMLC I have to strip out any empty arguments from the argument list. Flexmojos generated an argument list containing two empty arguments:
> 
> -load-config=
> -compiler.include-libraries=
> 
> If I remove them in general the old compiler complains. So I remove them only when executing Falcon.
> Just wanted to report this, just in case this might be a problem.
> 
> Chris
> 
> 
 		 	   		  

Re: First working compilation of a flex project using flexmojos and falcon

Posted by Erik de Bruin <er...@ixsoftware.nl>.
Congratulations Chris! Feels good, right?

:-)

EdB



On Fri, Oct 10, 2014 at 11:00 AM, Christofer Dutz <christofer.dutz@c-ware.de
> wrote:

> Hi guys,
>
>
> today I am proud to report that I just had the first working compilation
> of a flexmojos module using falcon:
>
>
> /Library/Java/JavaVirtualMachines/jdk1.7.0_65.jdk/Contents/Home/bin/java
> -Dmaven.home=/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1
> -Dclassworlds.conf=/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1/bin/m2.conf
> -Didea.launcher.port=7534 "-Didea.launcher.bin.path=/Applications/IntelliJ
> IDEA 13.app/Contents/bin" -Dfile.encoding=UTF-8 -classpath
> "/Users/christoferdutz/Devtools/Apache/apache-maven-3.1.1/boot/plexus-classworlds-2.5.1.jar:/Applications/IntelliJ
> IDEA 13.app/Contents/lib/idea_rt.jar"
> com.intellij.rt.execution.application.AppMain
> org.codehaus.classworlds.Launcher -Didea.version=13.1.5 --errors
> -DskipTests=true clean install
> [INFO] Error stacktraces are turned on.
> [INFO] Scanning for projects...
> [INFO]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building hello-spark 1.0-SNAPSHOT
> [INFO]
> ------------------------------------------------------------------------
> [INFO]
> [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ hello-spark ---
> [INFO] Deleting /Users/christoferdutz/Projects/Flexmojos/hello-spark/target
> [INFO]
> [INFO] --- maven-resources-plugin:2.7:resources (default-resources) @
> hello-spark ---
> [WARNING] Using platform encoding (UTF-8 actually) to copy filtered
> resources, i.e. build is platform dependent!
> [INFO] skip non existing resourceDirectory
> /Users/christoferdutz/Projects/Flexmojos/hello-spark/src/main/resources
> [INFO]
> [INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:compile-swf
> (default-compile-swf) @ hello-spark ---
> [INFO] Flexmojos 7.1.0-SNAPSHOT
> [INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> [WARNING] No themes are explicitly defined in the <theme> section or in
> any scope="theme" dependencies. Flexmojos is now attempting to figure out
> which themes to include. (to avoid this warning you should explicitly state
> your theme dependencies)
> [WARNING] Adding spark theme because spark.swc was included as a dependency
>
> 252394 bytes written to
> /Users/christoferdutz/Projects/Flexmojos/hello-spark/target/hello-spark-1.0-SNAPSHOT.swf
> in 4,913 seconds
> [INFO]
> [INFO] --- maven-resources-plugin:2.7:testResources
> (default-testResources) @ hello-spark ---
> [WARNING] Using platform encoding (UTF-8 actually) to copy filtered
> resources, i.e. build is platform dependent!
> [INFO] skip non existing resourceDirectory
> /Users/christoferdutz/Projects/Flexmojos/hello-spark/src/test/resources
> [INFO]
> [INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:test-compile
> (default-test-compile) @ hello-spark ---
> [INFO] Flexmojos 7.1.0-SNAPSHOT
> [INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> [INFO] Skipping compiler, test source path doesn't exist.
> [INFO]
> [INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:test-run
> (default-test-run) @ hello-spark ---
> [INFO] Flexmojos 7.1.0-SNAPSHOT
> [INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> [INFO] Skipping test phase.
> [INFO]
> [INFO] --- maven-install-plugin:2.5.2:install (default-install) @
> hello-spark ---
> [INFO] Installing
> /Users/christoferdutz/Projects/Flexmojos/hello-spark/target/hello-spark-1.0-SNAPSHOT.swf
> to
> /Users/christoferdutz/.m2/repository/info/rvin/itest/hello-spark/1.0-SNAPSHOT/hello-spark-1.0-SNAPSHOT.swf
> [INFO] Installing
> /Users/christoferdutz/Projects/Flexmojos/hello-spark/pom.xml to
> /Users/christoferdutz/.m2/repository/info/rvin/itest/hello-spark/1.0-SNAPSHOT/hello-spark-1.0-SNAPSHOT.pom
> [INFO]
> ------------------------------------------------------------------------
> [INFO] BUILD SUCCESS
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Total time: 6.980s
> [INFO] Finished at: Fri Oct 10 10:53:44 CEST 2014
> [INFO] Final Memory: 23M/455M
> [INFO]
> ------------------------------------------------------------------------
>
> Process finished with exit code 0
>
>
> One thing I did notice, was that when executing the Falcon MXMLC I have to
> strip out any empty arguments from the argument list. Flexmojos generated
> an argument list containing two empty arguments:
>
> -load-config=
> -compiler.include-libraries=
>
> If I remove them in general the old compiler complains. So I remove them
> only when executing Falcon.
> Just wanted to report this, just in case this might be a problem.
>
> Chris
>
>
>


-- 
Ix Multimedia Software

Jan Luykenstraat 27
3521 VB Utrecht

T. 06-51952295
I. www.ixsoftware.nl