├── flexmojos-maven-plugin └── src │ ├── main │ ├── resources │ │ ├── fonts │ │ │ ├── localFonts.ser │ │ │ ├── macFonts.ser │ │ │ └── winFonts.ser │ │ ├── rb.swc │ │ ├── themes │ │ │ ├── halo.swc │ │ │ └── spark.css │ │ ├── templates │ │ │ ├── wrapper │ │ │ │ ├── express-installation.zip │ │ │ │ ├── no-player-detection.zip │ │ │ │ ├── client-side-detection.zip │ │ │ │ ├── no-player-detection-with-history.zip │ │ │ │ ├── client-side-detection-with-history.zip │ │ │ │ └── express-installation-with-history.zip │ │ │ └── flexbuilder │ │ │ │ └── flexProperties.vm │ │ ├── flexmojos.properties │ │ └── configs │ │ │ └── config.xml │ └── java │ │ └── net │ │ └── flexmojos │ │ └── oss │ │ └── plugin │ │ ├── font │ │ └── types │ │ │ └── TranscoderType.java │ │ └── SourcePathAware.java │ └── test │ └── resources │ ├── abc │ └── cba │ │ └── test │ ├── fileresolver │ ├── indexas │ │ ├── dummy.png │ │ ├── Index.as │ │ ├── dummy.as │ │ └── dummy.mxml │ ├── mainas │ │ ├── dummy.png │ │ ├── Index.as │ │ ├── Main.as │ │ ├── dummy.as │ │ └── dummy.mxml │ ├── mainmxml │ │ ├── dummy.png │ │ ├── dummy.as │ │ ├── Index.mxml │ │ ├── Main.mxml │ │ └── dummy.mxml │ ├── uniqueas │ │ ├── dummy.png │ │ └── dummy.as │ ├── artifactidas │ │ ├── dummy.png │ │ ├── artifact.as │ │ ├── dummy.as │ │ └── dummy.mxml │ ├── indexmxml │ │ ├── dummy.png │ │ ├── dummy.as │ │ ├── Index.mxml │ │ └── dummy.mxml │ ├── nroots │ │ ├── root1 │ │ │ └── dummy.png │ │ ├── root2 │ │ │ └── dummy.png │ │ └── root3 │ │ │ ├── dummy.png │ │ │ └── root.as │ ├── uniquemxml │ │ ├── dummy.png │ │ └── dummy.mxml │ ├── artifactidmxml │ │ ├── dummy.png │ │ ├── dummy.as │ │ ├── dummy.mxml │ │ └── artifact.mxml │ ├── notresolvenroots │ │ ├── root1 │ │ │ └── dummy.png │ │ ├── root2 │ │ │ └── dummy.png │ │ └── root3 │ │ │ └── dummy.png │ ├── notresolvenroots2 │ │ ├── root1 │ │ │ ├── dummy.png │ │ │ └── dummy.as │ │ ├── root2 │ │ │ ├── dummy.png │ │ │ └── dummy.mxml │ │ └── root3 │ │ │ ├── dummy.png │ │ │ └── root.as │ ├── packagegroup │ │ └── net │ │ │ └── flexmojos │ │ │ └── oss │ │ │ ├── dummy.png │ │ │ └── pack.as │ ├── notresolvepackage │ │ └── net │ │ │ └── flexmojos │ │ │ └── oss │ │ │ └── dummy.png │ ├── notresolvepackageid │ │ └── net │ │ │ └── flexmojos │ │ │ └── oss │ │ │ └── artifactid │ │ │ └── dummy.png │ ├── packageartifact │ │ └── net │ │ │ └── flexmojos │ │ │ └── oss │ │ │ └── artifactid │ │ │ ├── dummy.png │ │ │ └── pack.mxml │ ├── absolute │ │ ├── dummy.as │ │ └── xummy.as │ ├── simple │ │ └── thesimple.as │ └── notresolve │ │ └── Index.mxml │ └── swcs │ └── artifact-en_US-1.0.rb.swc ├── flexmojos-sandbox ├── flexmojos-installer │ └── src │ │ └── izpack │ │ ├── Readme.txt │ │ └── TargetDir.txt └── flexmojos-flex-compiler │ └── src │ ├── test │ └── resources │ │ └── dummy_as3 │ │ └── main.as │ └── main │ └── java │ └── net │ └── flexmojos │ └── oss │ └── compiler │ └── command │ └── Command.java ├── flexmojos-testing ├── flexmojos-test-harness │ ├── projects │ │ ├── coverage │ │ │ ├── compilation-options │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── fonts.ser │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── htmlwrapper-templates │ │ │ │ └── zip │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── resources │ │ │ │ │ └── template.zip │ │ │ ├── source-file-resolver │ │ │ │ ├── application-forced │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── flex │ │ │ │ │ │ ├── Index.mxml │ │ │ │ │ │ └── Main.mxml │ │ │ │ ├── application-main │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── flex │ │ │ │ │ │ ├── Index.mxml │ │ │ │ │ │ └── AnotherFile.mxml │ │ │ │ └── application-index │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── AnotherFile.mxml │ │ │ └── asdoc-inclusion-exclusion │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ ├── Documentable.as │ │ │ │ └── net │ │ │ │ └── flexmojos │ │ │ │ └── oss │ │ │ │ └── it │ │ │ │ ├── Azul.as │ │ │ │ └── Verde.as │ │ ├── concept │ │ │ ├── archetype │ │ │ │ └── KEEP.ME │ │ │ ├── native-air │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── air │ │ │ │ │ └── sign.p12 │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── simple-air │ │ │ │ ├── air │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── air │ │ │ │ │ │ └── sign.p12 │ │ │ │ └── swc │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── Label.mxml │ │ │ ├── simplify-air │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── air │ │ │ │ │ └── sign.p12 │ │ │ │ │ ├── resources │ │ │ │ │ ├── 16.png │ │ │ │ │ ├── 32.png │ │ │ │ │ ├── 48.png │ │ │ │ │ └── 128.png │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── manifest │ │ │ │ └── src │ │ │ │ │ └── assets │ │ │ │ │ └── pf_ronda_seven.ttf │ │ │ ├── simple-air-sdk3 │ │ │ │ ├── air │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── air │ │ │ │ │ │ └── sign.p12 │ │ │ │ └── swc │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── Label.mxml │ │ │ ├── simple-air-application │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── air │ │ │ │ │ └── sign.p12 │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── simple-generation │ │ │ │ ├── java │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── java │ │ │ │ │ │ └── net │ │ │ │ │ │ └── flexmojos │ │ │ │ │ │ └── oss │ │ │ │ │ │ ├── SimpleEnum.java │ │ │ │ │ │ └── SimpleInterface.java │ │ │ │ └── flex │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── l10n-swc-swf │ │ │ │ └── lib │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── locales │ │ │ │ │ ├── en_US │ │ │ │ │ └── text.properties │ │ │ │ │ └── ja_JP │ │ │ │ │ └── text.properties │ │ │ ├── l10n-locale-chain │ │ │ │ └── lib │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── locales │ │ │ │ │ ├── en_US │ │ │ │ │ └── text.properties │ │ │ │ │ └── pt_PT │ │ │ │ │ └── text.properties │ │ │ ├── merged-sources │ │ │ │ └── src │ │ │ │ │ └── AClass.as │ │ │ ├── l10n-swf │ │ │ │ ├── FlightReservation2Package │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── webapp │ │ │ │ │ │ └── WEB-INF │ │ │ │ │ │ └── web.xml │ │ │ │ └── localized-dependency-test │ │ │ │ │ └── localized-library │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── locales │ │ │ │ │ ├── da_DK │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ ├── de_DE │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ ├── en_US │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ ├── es_ES │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ ├── fi_FI │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ ├── fr_FR │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ ├── it_IT │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ ├── ja_JP │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ ├── ko_KR │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ ├── nb_NO │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ ├── nl_NL │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ ├── pt_BR │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ ├── se_SV │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ ├── zh_CN │ │ │ │ │ └── MyLibrary.properties │ │ │ │ │ └── zh_TW │ │ │ │ │ └── MyLibrary.properties │ │ │ ├── rsl │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── Main.mxml │ │ │ ├── transitive-dependencies │ │ │ │ ├── internalLib │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── flex │ │ │ │ │ │ └── C.as │ │ │ │ └── A │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── A.as │ │ │ ├── optimized-application │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── HelloWorld.as │ │ │ ├── optimized-flex-library │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── HelloWorld.as │ │ │ ├── simple-air-library │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── HelloWorld.as │ │ │ ├── simple-flex-library │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── HelloWorld.as │ │ │ ├── simple-flex-modular │ │ │ │ ├── library │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── flex │ │ │ │ │ │ └── info │ │ │ │ │ │ └── rvin │ │ │ │ │ │ └── itest │ │ │ │ │ │ └── ScriptClass.as │ │ │ │ └── module │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── attach-asdoc │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── net │ │ │ │ │ └── flexmojos │ │ │ │ │ └── oss │ │ │ │ │ └── it │ │ │ │ │ ├── Azul.as │ │ │ │ │ ├── Amarelo.as │ │ │ │ │ ├── Verde.as │ │ │ │ │ └── Vermelho.as │ │ │ ├── sources │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── rpc-hfcd-sdk │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── runtime-css │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── updated-sdk │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── asunit-example │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── downgrade-sdk2 │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── downgrade-sdk3 │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── flexunit4-example │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── funit-example │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── metadata-test │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── advancedflex-example │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── fluint-example │ │ │ │ ├── fail │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── flex │ │ │ │ │ │ └── main.mxml │ │ │ │ └── pass │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── hello-world-no-inherit │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── main.mxml │ │ │ ├── copy-flex-resources │ │ │ │ └── swf │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── modules │ │ │ │ │ └── module2.mxml │ │ │ └── html-template-application │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── main.mxml │ │ └── issues │ │ │ ├── issue-0029 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ ├── pusssa.ttf │ │ │ │ └── styles.css │ │ │ ├── issue-0099 │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── icon.png │ │ │ │ └── flex │ │ │ │ └── Main.mxml │ │ │ ├── flexmojos-315 │ │ │ └── src │ │ │ │ ├── test │ │ │ │ └── resources │ │ │ │ │ └── logo.png │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── shortlogo.png │ │ │ ├── flexmojos-183 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── Polsku.ttf │ │ │ ├── flexmojos-872 │ │ │ └── src │ │ │ │ └── test │ │ │ │ └── flex │ │ │ │ └── unittest │ │ │ │ ├── ParametrizedTestWithoutFailuresTest.as │ │ │ │ ├── ParametrizedTestWithFailuresTest.as │ │ │ │ └── ParametrizedTestWithErrorsTest.as │ │ │ ├── flexmojos-44 │ │ │ └── src │ │ │ │ ├── test │ │ │ │ └── flex │ │ │ │ │ └── dummy │ │ │ │ │ └── DummyTest.as │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── main.mxml │ │ │ ├── issue-0076 │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── locales │ │ │ │ ├── en_US │ │ │ │ │ └── data_model.properties │ │ │ │ └── es_ES │ │ │ │ │ └── data_model.properties │ │ │ │ └── flex │ │ │ │ └── HelloWorld.as │ │ │ ├── flexmojos-395 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── locales │ │ │ │ ├── en_US │ │ │ │ └── text.properties │ │ │ │ └── es_MX │ │ │ │ └── text.properties │ │ │ ├── issue-0103 │ │ │ └── project │ │ │ │ ├── atBase.txt │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── resourceRoot.txt │ │ │ │ └── aFolder │ │ │ │ └── onFolder.txt │ │ │ ├── issue-0008-2 │ │ │ └── src │ │ │ │ ├── test │ │ │ │ └── flex │ │ │ │ │ ├── LimboFile.as │ │ │ │ │ └── readme.txt │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── main.mxml │ │ │ ├── issue-0070 │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── locales │ │ │ │ └── en_US │ │ │ │ │ └── foo.properties │ │ │ │ └── flex │ │ │ │ └── Main.mxml │ │ │ ├── flexmojos-167 │ │ │ ├── b │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── Main.css │ │ │ └── a │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── Main.mxml │ │ │ ├── flexmojos-334 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── FlexMaven │ │ │ │ ├── unusedInclude.as │ │ │ │ ├── App.as │ │ │ │ └── UntestedClass.as │ │ │ ├── flexmojos-247 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ ├── AClass.as │ │ │ │ ├── BClass.as │ │ │ │ └── p │ │ │ │ ├── CClass.as │ │ │ │ └── DClass.as │ │ │ ├── issue-0069 │ │ │ └── src │ │ │ │ └── test │ │ │ │ └── resources │ │ │ │ └── source.xml │ │ │ ├── flexmojos-136 │ │ │ └── lib │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── A.as │ │ │ ├── issue-0134 │ │ │ └── flex │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── Validate.as │ │ │ ├── flexmojos-230 │ │ │ └── moduleB │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── BClass.as │ │ │ ├── flexmojos-145 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ ├── main.mxml │ │ │ │ ├── additional1.mxml │ │ │ │ ├── additional2.mxml │ │ │ │ └── additional3.mxml │ │ │ ├── flexmojos-146 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── main.mxml │ │ │ ├── flexmojos-147 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── main.mxml │ │ │ ├── issue-0152 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── Application.mxml │ │ │ ├── flexmojos-251 │ │ │ ├── war │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── webapp │ │ │ │ │ ├── WEB-INF │ │ │ │ │ └── excluded.txt │ │ │ │ │ └── not-included.html │ │ │ └── swf │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── Main.mxml │ │ │ ├── flexmojos-102 │ │ │ ├── war │ │ │ │ ├── war │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ └── webapp │ │ │ │ │ │ ├── WEB-INF │ │ │ │ │ │ └── excluded.txt │ │ │ │ │ │ └── not-included.html │ │ │ │ └── swf │ │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── Main.mxml │ │ │ └── pom │ │ │ │ └── swf │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── Main.mxml │ │ │ ├── issue-0067 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── net │ │ │ │ └── flexmojos │ │ │ │ └── oss │ │ │ │ └── it │ │ │ │ └── AClass.as │ │ │ ├── flexmojos-130 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── net │ │ │ │ └── flexmojos │ │ │ │ └── oss │ │ │ │ └── it │ │ │ │ └── AClass.as │ │ │ ├── flexmojos-141 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── main.mxml │ │ │ ├── flexmojos-220 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ ├── main.mxml │ │ │ │ └── module │ │ │ │ └── module.mxml │ │ │ ├── flexmojos-52 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── main.mxml │ │ │ ├── flexmojos-67 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── main.mxml │ │ │ ├── issue-0008-1 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── main.mxml │ │ │ ├── issue-0014 │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── main.mxml │ │ │ ├── flexmojos-168 │ │ │ ├── skip │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── flex │ │ │ │ │ └── Main.mxml │ │ │ └── classifier │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── Main.mxml │ │ │ ├── issue-0061 │ │ │ └── flex │ │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── flex │ │ │ │ └── main.mxml │ │ │ └── issue-0066 │ │ │ └── flex │ │ │ └── src │ │ │ └── main │ │ │ └── flex │ │ │ └── main.mxml │ └── src │ │ └── test │ │ └── java │ │ └── junit │ │ └── framework │ │ └── Assert.java ├── flexmojos-tester │ └── src │ │ ├── test │ │ └── resources │ │ │ ├── NonExit.swf │ │ │ └── SelftExit.swf │ │ └── main │ │ └── java │ │ └── net │ │ └── flexmojos │ │ └── oss │ │ └── test │ │ ├── ThreadHelper.java │ │ └── ThreadStatus.java └── flexmojos-unittest │ └── flexmojos-unittest-support │ └── src │ └── main │ └── flex │ └── org │ └── codehaus │ └── plexus │ └── util │ └── xml │ └── Xpp3Dom.as ├── flexmojos-touchstone ├── optimization │ └── src │ │ └── picture.png └── filled │ └── filled-swf │ └── html-template │ └── playerProductInstall.swf ├── .gitignore ├── README.md ├── flexmojos-super-poms └── src │ └── site │ └── apt │ └── examples │ └── example.apt ├── flexmojos-generator └── flexmojos-generator-api │ └── src │ └── main │ └── java │ └── net │ └── flexmojos │ └── oss │ └── generator │ └── Generator.java └── flexmojos-archetypes ├── flexmojos-archetypes-library └── src │ └── main │ └── resources │ └── archetype-resources │ └── src │ └── main │ └── flex │ └── App.as └── flexmojos-archetypes-modular-webapp └── src └── main └── resources └── archetype-resources └── swc └── src └── main └── flex └── App.as /flexmojos-maven-plugin/src/main/resources/fonts/localFonts.ser: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/abc/cba/test: -------------------------------------------------------------------------------- 1 | test file -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/rb.swc: -------------------------------------------------------------------------------- 1 | PK -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/indexas/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/mainas/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/mainmxml/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/uniqueas/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidas/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/indexmxml/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/nroots/root1/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/nroots/root2/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/nroots/root3/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/uniquemxml/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-sandbox/flexmojos-installer/src/izpack/Readme.txt: -------------------------------------------------------------------------------- 1 | A readme file ... -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidmxml/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots/root1/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots/root2/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots/root3/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots2/root1/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots2/root2/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots2/root3/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/packagegroup/net/flexmojos/oss/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvepackage/net/flexmojos/oss/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/coverage/compilation-options/src/main/resources/fonts.ser: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvepackageid/net/flexmojos/oss/artifactid/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/packageartifact/net/flexmojos/oss/artifactid/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flexmojos-sandbox/flexmojos-installer/src/izpack/TargetDir.txt: -------------------------------------------------------------------------------- 1 | $APPLICATIONS_DEFAULT_ROOT $FILE_SEPARATORflexmojos -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/archetype/KEEP.ME: -------------------------------------------------------------------------------- 1 | just a keep me file, needed for ArchetypesTest -------------------------------------------------------------------------------- /flexmojos-touchstone/optimization/src/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-touchstone/optimization/src/picture.png -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/themes/halo.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-maven-plugin/src/main/resources/themes/halo.swc -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/fonts/macFonts.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-maven-plugin/src/main/resources/fonts/macFonts.ser -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/fonts/winFonts.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-maven-plugin/src/main/resources/fonts/winFonts.ser -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-tester/src/test/resources/NonExit.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-tester/src/test/resources/NonExit.swf -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-tester/src/test/resources/SelftExit.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-tester/src/test/resources/SelftExit.swf -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/swcs/artifact-en_US-1.0.rb.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-maven-plugin/src/test/resources/swcs/artifact-en_US-1.0.rb.swc -------------------------------------------------------------------------------- /flexmojos-touchstone/filled/filled-swf/html-template/playerProductInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-touchstone/filled/filled-swf/html-template/playerProductInstall.swf -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/templates/wrapper/express-installation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-maven-plugin/src/main/resources/templates/wrapper/express-installation.zip -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/templates/wrapper/no-player-detection.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-maven-plugin/src/main/resources/templates/wrapper/no-player-detection.zip -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/templates/wrapper/client-side-detection.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-maven-plugin/src/main/resources/templates/wrapper/client-side-detection.zip -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/native-air/src/main/air/sign.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/concept/native-air/src/main/air/sign.p12 -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simple-air/air/src/main/air/sign.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/concept/simple-air/air/src/main/air/sign.p12 -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/air/sign.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/air/sign.p12 -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0029/src/main/flex/pusssa.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0029/src/main/flex/pusssa.ttf -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/templates/wrapper/no-player-detection-with-history.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-maven-plugin/src/main/resources/templates/wrapper/no-player-detection-with-history.zip -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/manifest/src/assets/pf_ronda_seven.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/concept/manifest/src/assets/pf_ronda_seven.ttf -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/resources/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/resources/16.png -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/resources/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/resources/32.png -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/resources/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/resources/48.png -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0099/src/main/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0099/src/main/resources/icon.png -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/templates/wrapper/client-side-detection-with-history.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-maven-plugin/src/main/resources/templates/wrapper/client-side-detection-with-history.zip -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/templates/wrapper/express-installation-with-history.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-maven-plugin/src/main/resources/templates/wrapper/express-installation-with-history.zip -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simple-air-sdk3/air/src/main/air/sign.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/concept/simple-air-sdk3/air/src/main/air/sign.p12 -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/resources/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/resources/128.png -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-315/src/test/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-315/src/test/resources/logo.png -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-183/src/main/resources/Polsku.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-183/src/main/resources/Polsku.ttf -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simple-air-application/src/main/air/sign.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/concept/simple-air-application/src/main/air/sign.p12 -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-315/src/main/resources/shortlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-315/src/main/resources/shortlogo.png -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/coverage/htmlwrapper-templates/zip/src/main/resources/template.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velo/flexmojos/HEAD/flexmojos-testing/flexmojos-test-harness/projects/coverage/htmlwrapper-templates/zip/src/main/resources/template.zip -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/java/net/flexmojos/oss/plugin/font/types/TranscoderType.java: -------------------------------------------------------------------------------- 1 | package net.flexmojos.oss.plugin.font.types; 2 | 3 | /** 4 | * Created by christoferdutz on 13.04.15. 5 | */ 6 | public enum TranscoderType { 7 | 8 | DEFINEFONT3, 9 | DEFINEFONT4 10 | 11 | } 12 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simple-generation/java/src/main/java/net/flexmojos/oss/SimpleEnum.java: -------------------------------------------------------------------------------- 1 | package net.flexmojos.oss; 2 | 3 | /** 4 | * Created by cdutz on 03.01.14. 5 | */ 6 | public enum SimpleEnum { 7 | COOL_VALUE, 8 | EVEN_COOLER_VALUE, 9 | COOLEST_VALUE_EVER 10 | } 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignores for Sonatype Nexus Core 2 | # Language is Java 3 | # Build tool is Apache Maven2/3 4 | # IDE used is Eclipse MSE 5 | # so, we have to ignore all the specifics of these above 6 | 7 | # Eclipse related (and M2e) 8 | .classpath 9 | .project 10 | .settings/ 11 | test-output/ 12 | 13 | # Maven related (and some plugins) 14 | target/ 15 | *.ser 16 | *.ec 17 | 18 | # Intellij 19 | *.ipr 20 | *.iml 21 | *.iws 22 | .idea/ 23 | 24 | # Other 25 | .svn/ 26 | bin/ 27 | 28 | .scala_dependencies 29 | dependency-reduced-pom.xml 30 | 31 | .DS_Store -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-872/src/test/flex/unittest/ParametrizedTestWithoutFailuresTest.as: -------------------------------------------------------------------------------- 1 | package unittest { 2 | import org.flexunit.Assert; 3 | 4 | [RunWith("org.flexunit.runners.Parameterized")] 5 | public class ParametrizedTestWithoutFailuresTest { 6 | 7 | public static function providesData():Array { 8 | var values:Array = new Array(100); 9 | for (var i:int = 0; i < values.length; i++) { 10 | values[i] = ["AnotherTestData-" + i]; 11 | } 12 | return values; 13 | } 14 | 15 | [Test(dataProvider="providesData")] 16 | public function notFailingTest(testData:String):void { 17 | } 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-872/src/test/flex/unittest/ParametrizedTestWithFailuresTest.as: -------------------------------------------------------------------------------- 1 | package unittest { 2 | import org.flexunit.Assert; 3 | 4 | [RunWith("org.flexunit.runners.Parameterized")] 5 | public class ParametrizedTestWithFailuresTest { 6 | 7 | public static function providesData():Array { 8 | var values:Array = new Array(100); 9 | for (var i:int = 0; i < values.length; i++) { 10 | values[i] = ["SomeData-" + i]; 11 | } 12 | return values; 13 | } 14 | 15 | [Test(dataProvider="providesData")] 16 | public function failingTest(testData:String):void { 17 | Assert.assertFalse(testData == "SomeData-98"); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Flexmojos 2 | =================== 3 | 4 | This is the Core codebase of Flexmojos. 5 | 6 | Flexmojos provides first-class support for Flex and AIR development within Apache Maven. It allows Maven to compile, optimize, and test Flex SWF, Flex SWC, Air SWF and Air SWC. 7 | 8 | Build instructions: 9 | https://docs.sonatype.org/display/FLEXMOJOS/Building+Flexmojos+from+sources 10 | 11 | YourKit is kindly supporting open source projects with its full-featured Java Profiler. 12 | YourKit, LLC is the creator of innovative and intelligent tools for profiling 13 | Java and .NET applications. Take a look at YourKit's leading software products: 14 | 15 | [YourKit Java Profiler](http://www.yourkit.com/java/profiler/index.jsp) and 16 | [YourKit .NET Profiler](http://www.yourkit.com/.net/profiler/index.jsp). 17 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-872/src/test/flex/unittest/ParametrizedTestWithErrorsTest.as: -------------------------------------------------------------------------------- 1 | package unittest { 2 | import org.flexunit.Assert; 3 | 4 | [RunWith("org.flexunit.runners.Parameterized")] 5 | public class ParametrizedTestWithErrorsTest { 6 | 7 | public static function providesData():Array { 8 | var values:Array = new Array(100); 9 | for (var i:int = 0; i < values.length; i++) { 10 | values[i] = ["SomeData-" + i]; 11 | } 12 | return values; 13 | } 14 | 15 | [Test(dataProvider="providesData")] 16 | public function failingTest(testData:String):void { 17 | if(testData == "SomeData-98") { 18 | throw new Error("Failure"); 19 | } 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/mainas/Index.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/mainas/Main.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/mainas/dummy.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/absolute/dummy.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/absolute/xummy.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/indexas/Index.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/indexas/dummy.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/indexmxml/dummy.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/mainmxml/dummy.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/nroots/root3/root.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/simple/thesimple.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/uniqueas/dummy.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/flexmojos.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | version = ${project.version} -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidas/artifact.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidas/dummy.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidmxml/dummy.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots2/root1/dummy.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots2/root3/root.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/indexas/dummy.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/indexmxml/Index.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/indexmxml/dummy.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/mainas/dummy.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/mainmxml/Index.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/mainmxml/Main.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/mainmxml/dummy.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/notresolve/Index.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/packagegroup/net/flexmojos/oss/pack.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/uniquemxml/dummy.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidas/dummy.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidmxml/dummy.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidmxml/artifact.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-44/src/test/flex/dummy/DummyTest.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots2/root2/dummy.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0076/src/main/locales/en_US/data_model.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | key=test -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0076/src/main/locales/es_ES/data_model.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | key=test -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swc-swf/lib/src/main/locales/en_US/text.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TITLE=Main View -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-395/src/main/locales/en_US/text.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TITLE=Main View -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0103/project/atBase.txt: -------------------------------------------------------------------------------- 1 | ==== 2 | Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | Copyright (C) 2008-2012 Marvin Froeder 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | ==== 18 | 19 | #dummie content -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-locale-chain/lib/src/main/locales/en_US/text.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TITLE=Main View -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swc-swf/lib/src/main/locales/ja_JP/text.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TITLE=Main View (J) -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-395/src/main/locales/es_MX/text.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TITLE=Vista principal -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/test/resources/fileresolver/packageartifact/net/flexmojos/oss/artifactid/pack.mxml: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-locale-chain/lib/src/main/locales/pt_PT/text.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TITLE=Vista principal -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0008-2/src/test/flex/LimboFile.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | Not is even an ActionScrit File -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0070/src/main/locales/en_US/foo.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | hello = hello 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0103/project/src/main/resources/resourceRoot.txt: -------------------------------------------------------------------------------- 1 | ==== 2 | Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | Copyright (C) 2008-2012 Marvin Froeder 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | ==== 18 | 19 | #dummie content -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0103/project/src/main/resources/aFolder/onFolder.txt: -------------------------------------------------------------------------------- 1 | ==== 2 | Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | Copyright (C) 2008-2012 Marvin Froeder 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | ==== 18 | 19 | #dummie content -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/merged-sources/src/AClass.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package 19 | { 20 | public class AClass { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /flexmojos-super-poms/src/site/apt/examples/example.apt: -------------------------------------------------------------------------------- 1 | ~~ 2 | ~~ Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | ~~ Copyright (C) 2008-2012 Marvin Froeder 4 | ~~ 5 | ~~ This program is free software: you can redistribute it and/or modify 6 | ~~ it under the terms of the GNU General Public License as published by 7 | ~~ the Free Software Foundation, either version 3 of the License, or 8 | ~~ (at your option) any later version. 9 | ~~ 10 | ~~ This program is distributed in the hope that it will be useful, 11 | ~~ but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | ~~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | ~~ GNU General Public License for more details. 14 | ~~ 15 | ~~ You should have received a copy of the GNU General Public License 16 | ~~ along with this program. If not, see . 17 | ~~ 18 | 19 | Compile library 20 | 21 | Possible example for compiler use. 22 | TODO -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/FlightReservation2Package/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 20 | --> 21 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-167/b/src/main/flex/Main.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | /* CSS file */ 19 | Button{ 20 | color: #FF0000; 21 | } -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-334/src/main/flex/FlexMaven/unusedInclude.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | public static var used:Boolean=false; 19 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-247/src/main/flex/AClass.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package 19 | { 20 | public class AClass { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-247/src/main/flex/BClass.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package 19 | { 20 | public class BClass { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0069/src/test/resources/source.xml: -------------------------------------------------------------------------------- 1 | 20 | velo 21 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-247/src/main/flex/p/CClass.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package p 19 | { 20 | public class CClass { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-247/src/main/flex/p/DClass.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package p 19 | { 20 | public class DClass { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /flexmojos-sandbox/flexmojos-flex-compiler/src/test/resources/dummy_as3/main.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package { 19 | import flash.display.Sprite; 20 | public class main extends Sprite {} 21 | } -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/da_DK/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/de_DE/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/en_US/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/es_ES/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/fi_FI/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/fr_FR/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/it_IT/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/ja_JP/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/ko_KR/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/nb_NO/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/nl_NL/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/pt_BR/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/se_SV/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/zh_CN/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/l10n-swf/localized-dependency-test/localized-library/src/main/locales/zh_TW/MyLibrary.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | # Copyright (C) 2008-2012 Marvin Froeder 4 | # 5 | # This program is free software: you can redistribute it and/or modify 6 | # it under the terms of the GNU General Public License as published by 7 | # the Free Software Foundation, either version 3 of the License, or 8 | # (at your option) any later version. 9 | # 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | # GNU General Public License for more details. 14 | # 15 | # You should have received a copy of the GNU General Public License 16 | # along with this program. If not, see . 17 | # 18 | 19 | TEXT=Let's switch languages! 20 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/coverage/source-file-resolver/application-forced/src/main/flex/Index.mxml: -------------------------------------------------------------------------------- 1 | 20 | //Is empty because should not be used 21 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/coverage/source-file-resolver/application-forced/src/main/flex/Main.mxml: -------------------------------------------------------------------------------- 1 | 20 | //Is empty because should not be used 21 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/coverage/source-file-resolver/application-main/src/main/flex/Index.mxml: -------------------------------------------------------------------------------- 1 | 20 | //Is empty because should not be used 21 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-tester/src/main/java/net/flexmojos/oss/test/ThreadHelper.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package net.flexmojos.oss.test; 19 | 20 | public class ThreadHelper 21 | { 22 | 23 | } 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/coverage/source-file-resolver/application-index/src/main/flex/AnotherFile.mxml: -------------------------------------------------------------------------------- 1 | 20 | //Is empty because should not be used 21 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/coverage/source-file-resolver/application-main/src/main/flex/AnotherFile.mxml: -------------------------------------------------------------------------------- 1 | 20 | //Is empty because should not be used 21 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simple-air/swc/src/main/flex/Label.mxml: -------------------------------------------------------------------------------- 1 | 20 | 21 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simple-air-sdk3/swc/src/main/flex/Label.mxml: -------------------------------------------------------------------------------- 1 | 20 | 21 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-136/lib/src/main/flex/A.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package 19 | { 20 | public class A 21 | { 22 | public function A() 23 | { 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/rsl/src/main/flex/Main.mxml: -------------------------------------------------------------------------------- 1 | 20 | 21 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/configs/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-tester/src/main/java/net/flexmojos/oss/test/ThreadStatus.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package net.flexmojos.oss.test; 19 | 20 | public enum ThreadStatus 21 | { 22 | RUNNING, DONE, ERROR, STARTED 23 | } 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/transitive-dependencies/internalLib/src/main/flex/C.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package 19 | { 20 | public class C 21 | { 22 | public function C() 23 | { 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-334/src/main/flex/FlexMaven/App.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package FlexMaven 19 | { 20 | 21 | public class App 22 | { 23 | 24 | include "sampleInclude.as"; 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0008-2/src/test/flex/readme.txt: -------------------------------------------------------------------------------- 1 | ==== 2 | Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | Copyright (C) 2008-2012 Marvin Froeder 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | ==== 18 | 19 | This file was put here only to be sure the folder is not emply. 20 | http://code.google.com/p/flexmojos/issues/detail?id=8 -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/optimized-application/src/main/flex/HelloWorld.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package 19 | { 20 | public class HelloWorld 21 | { 22 | public function HelloWorld() 23 | { 24 | } 25 | 26 | } 27 | } -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/optimized-flex-library/src/main/flex/HelloWorld.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package 19 | { 20 | public class HelloWorld 21 | { 22 | public function HelloWorld() 23 | { 24 | } 25 | 26 | } 27 | } -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simple-air-library/src/main/flex/HelloWorld.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package 19 | { 20 | public class HelloWorld 21 | { 22 | public function HelloWorld() 23 | { 24 | } 25 | 26 | } 27 | } -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simple-flex-library/src/main/flex/HelloWorld.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package 19 | { 20 | public class HelloWorld 21 | { 22 | public function HelloWorld() 23 | { 24 | } 25 | 26 | } 27 | } -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-334/src/main/flex/FlexMaven/UntestedClass.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package FlexMaven 19 | { 20 | 21 | public class UntestedClass 22 | { 23 | private var app:App; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/src/test/java/junit/framework/Assert.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package junit.framework; 19 | 20 | import org.testng.AssertJUnit; 21 | 22 | public class Assert 23 | extends AssertJUnit 24 | { 25 | 26 | } 27 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0070/src/main/flex/Main.mxml: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/java/net/flexmojos/oss/plugin/SourcePathAware.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package net.flexmojos.oss.plugin; 19 | 20 | import java.io.File; 21 | 22 | public interface SourcePathAware 23 | { 24 | 25 | File[] getSourcePath(); 26 | 27 | } 28 | -------------------------------------------------------------------------------- /flexmojos-sandbox/flexmojos-flex-compiler/src/main/java/net/flexmojos/oss/compiler/command/Command.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package net.flexmojos.oss.compiler.command; 19 | 20 | public interface Command 21 | { 22 | void command() 23 | throws Exception; 24 | } 25 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0134/flex/src/main/flex/Validate.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package { 19 | 20 | import test.TestValueObject; 21 | import test.TestValueObjectBase; 22 | 23 | public class Validate { 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/themes/spark.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | @namespace "library://ns.adobe.com/flex/mx"; 19 | 20 | Menu, Panel, TitleWindow 21 | { 22 | dropShadowVisible: true; 23 | } 24 | 25 | VideoDisplay 26 | { 27 | contentBackgroundColor: #000000; 28 | } -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-230/moduleB/src/main/flex/BClass.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, 3 | * optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 4 | * Copyright (C) 2008-2012 Marvin Froeder <marvin (at) flexmojos.net> 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 | */ 19 | package 20 | { 21 | 22 | /** 23 | * This is a well documented AS3 class =p 24 | */ 25 | public class BClass { 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simple-flex-modular/library/src/main/flex/info/rvin/itest/ScriptClass.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package info.rvin.itest { 19 | 20 | public class ScriptClass { 21 | 22 | public function ScriptClass() { 23 | } 24 | 25 | } 26 | } -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/transitive-dependencies/A/src/main/flex/A.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package 19 | { 20 | import C; 21 | 22 | public class A 23 | { 24 | public function A() 25 | { 26 | var c:C = new C(); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0076/src/main/flex/HelloWorld.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package 19 | { 20 | [ResourceBundle("data_model")] 21 | public class HelloWorld 22 | { 23 | public function HelloWorld() 24 | { 25 | 26 | } 27 | 28 | } 29 | } -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-145/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-146/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-147/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-167/a/src/main/flex/Main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0152/src/main/flex/Application.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-maven-plugin/src/main/resources/templates/flexbuilder/flexProperties.vm: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-145/src/main/flex/additional1.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-145/src/main/flex/additional2.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-145/src/main/flex/additional3.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/native-air/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simple-flex-modular/module/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/coverage/asdoc-inclusion-exclusion/src/main/flex/Documentable.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, 3 | * optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 4 | * Copyright (C) 2008-2012 Marvin Froeder <marvin (at) flexmojos.net> 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 | */ 19 | package 20 | { 21 | /** 22 | * This is just a documentable class 23 | */ 24 | public class Documentable 25 | { 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-251/war/src/main/webapp/WEB-INF/excluded.txt: -------------------------------------------------------------------------------- 1 | ==== 2 | Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | Copyright (C) 2008-2012 Marvin Froeder 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | ==== 18 | 19 | A file that is excluded from the wrapping process by matching a patterns in templateExclusions. 20 | 21 | This should not be replaced in the output: ${title} -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-unittest/flexmojos-unittest-support/src/main/flex/org/codehaus/plexus/util/xml/Xpp3Dom.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | /** 19 | * Generated by Gas3 v1.1.0 (Granite Data Services). 20 | */ 21 | 22 | package org.codehaus.plexus.util.xml { 23 | 24 | public class Xpp3Dom { } 25 | } -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/attach-asdoc/src/main/flex/net/flexmojos/oss/it/Azul.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, 3 | * optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 4 | * Copyright (C) 2008-2012 Marvin Froeder <marvin (at) flexmojos.net> 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 | */ 19 | package net.flexmojos.oss.it 20 | { 21 | /** 22 | * This is just a dummy class 23 | */ 24 | public class Azul 25 | { 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-102/war/war/src/main/webapp/WEB-INF/excluded.txt: -------------------------------------------------------------------------------- 1 | ==== 2 | Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | Copyright (C) 2008-2012 Marvin Froeder 4 | 5 | This program is free software: you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation, either version 3 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License 16 | along with this program. If not, see . 17 | ==== 18 | 19 | A file that is excluded from the wrapping process by matching a patterns in templateExclusions. 20 | 21 | This should not be replaced in the output: ${title} -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simple-air-application/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/sources/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0067/src/main/flex/net/flexmojos/oss/it/AClass.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, 3 | * optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 4 | * Copyright (C) 2008-2012 Marvin Froeder <marvin (at) flexmojos.net> 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 | */ 19 | package net.flexmojos.oss.it 20 | { 21 | 22 | /** 23 | * This is a well documented AS3 class =p 24 | */ 25 | public class AClass { 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /flexmojos-generator/flexmojos-generator-api/src/main/java/net/flexmojos/oss/generator/Generator.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package net.flexmojos.oss.generator; 19 | 20 | public interface Generator 21 | { 22 | 23 | void generate( GenerationRequest request ) 24 | throws GenerationException; 25 | 26 | } 27 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/attach-asdoc/src/main/flex/net/flexmojos/oss/it/Amarelo.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, 3 | * optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 4 | * Copyright (C) 2008-2012 Marvin Froeder <marvin (at) flexmojos.net> 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 | */ 19 | package net.flexmojos.oss.it 20 | { 21 | /** 22 | * This is a dummy excluded class 23 | */ 24 | public class Amarelo 25 | { 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/attach-asdoc/src/main/flex/net/flexmojos/oss/it/Verde.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, 3 | * optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 4 | * Copyright (C) 2008-2012 Marvin Froeder <marvin (at) flexmojos.net> 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 | */ 19 | package net.flexmojos.oss.it 20 | { 21 | /** 22 | * This is a another excluded class 23 | */ 24 | public class Verde 25 | { 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/rpc-hfcd-sdk/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/runtime-css/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/updated-sdk/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-130/src/main/flex/net/flexmojos/oss/it/AClass.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, 3 | * optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 4 | * Copyright (C) 2008-2012 Marvin Froeder <marvin (at) flexmojos.net> 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 | */ 19 | package net.flexmojos.oss.it 20 | { 21 | 22 | /** 23 | * This is a well documented AS3 class =p 24 | */ 25 | public class AClass { 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-141/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-220/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-220/src/main/flex/module/module.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-251/swf/src/main/flex/Main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-251/war/src/main/webapp/not-included.html: -------------------------------------------------------------------------------- 1 | 20 | A file that is excluded from the wrapping process by not matching any of the patterns in templateInclusions. 21 | 22 | This should not be replaced in the output: ${title} -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-44/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-52/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-67/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0008-1/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0008-2/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0014/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/asunit-example/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/attach-asdoc/src/main/flex/net/flexmojos/oss/it/Vermelho.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, 3 | * optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 4 | * Copyright (C) 2008-2012 Marvin Froeder <marvin (at) flexmojos.net> 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 | */ 19 | package net.flexmojos.oss.it 20 | { 21 | /** 22 | * This is a another excluded class 23 | */ 24 | public class Vermelho 25 | { 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/downgrade-sdk2/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/downgrade-sdk3/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/flexunit4-example/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/funit-example/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/metadata-test/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/coverage/asdoc-inclusion-exclusion/src/main/flex/net/flexmojos/oss/it/Azul.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, 3 | * optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 4 | * Copyright (C) 2008-2012 Marvin Froeder <marvin (at) flexmojos.net> 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 | */ 19 | package net.flexmojos.oss.it 20 | { 21 | /** 22 | * This is just a dummy class 23 | */ 24 | public class Azul 25 | { 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-102/war/war/src/main/webapp/not-included.html: -------------------------------------------------------------------------------- 1 | 20 | A file that is excluded from the wrapping process by not matching any of the patterns in templateInclusions. 21 | 22 | This should not be replaced in the output: ${title} -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-168/skip/src/main/flex/Main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0061/flex/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0066/flex/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-archetypes/flexmojos-archetypes-library/src/main/resources/archetype-resources/src/main/flex/App.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, 3 | * optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 4 | * Copyright (C) 2008-2012 Marvin Froeder 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see . 18 | */ 19 | package $package { 20 | 21 | public class App { 22 | 23 | public static function greeting(name:String):String { 24 | return "Hello, " + name; 25 | } 26 | 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /flexmojos-archetypes/flexmojos-archetypes-modular-webapp/src/main/resources/archetype-resources/swc/src/main/flex/App.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, 3 | * optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 4 | * Copyright (C) 2008-2012 Marvin Froeder 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see . 18 | */ 19 | package { 20 | 21 | public class App { 22 | 23 | public static function greeting(name:String):String { 24 | return "Hello, " + name; 25 | } 26 | 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/advancedflex-example/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/fluint-example/fail/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/fluint-example/pass/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/hello-world-no-inherit/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simple-generation/flex/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/simple-generation/java/src/main/java/net/flexmojos/oss/SimpleInterface.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | package net.flexmojos.oss.generator; 19 | 20 | public interface SimpleInterface { 21 | 22 | public String getName(); 23 | 24 | public Double getValue(); 25 | 26 | } 27 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/coverage/asdoc-inclusion-exclusion/src/main/flex/net/flexmojos/oss/it/Verde.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, 3 | * optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 4 | * Copyright (C) 2008-2012 Marvin Froeder <marvin (at) flexmojos.net> 5 | * 6 | * This program is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 | */ 19 | package net.flexmojos.oss.it 20 | { 21 | /** 22 | * This is a another excluded class 23 | */ 24 | public class Verde 25 | { 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/coverage/compilation-options/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-102/pom/swf/src/main/flex/Main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-102/war/swf/src/main/flex/Main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-168/classifier/src/main/flex/Main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0029/src/main/flex/styles.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC. 3 | * Copyright (C) 2008-2012 Marvin Froeder 4 | * 5 | * This program is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * This program is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | /* CSS file */ 19 | Text 20 | { 21 | fontFamily: Pussycat; 22 | } 23 | 24 | @font-face 25 | { 26 | fontFamily: Pussycat; 27 | fontWeight: normal; 28 | fontStyle: normal; 29 | src: url("/pusssa.ttf"); 30 | } 31 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0099/src/main/flex/Main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/copy-flex-resources/swf/src/main/flex/modules/module2.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /flexmojos-testing/flexmojos-test-harness/projects/concept/html-template-application/src/main/flex/main.mxml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 24 | --------------------------------------------------------------------------------