├── .gitignore
├── .mvn
└── extensions.xml
├── COPYRIGHT
├── README.md
├── flexmojos-archetypes
├── flexmojos-archetypes-application
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ ├── META-INF
│ │ └── maven
│ │ │ └── archetype.xml
│ │ └── archetype-resources
│ │ ├── .mvn
│ │ └── extensions.xml
│ │ ├── pom.xml
│ │ └── src
│ │ ├── main
│ │ └── flex
│ │ │ └── Main.mxml
│ │ └── test
│ │ └── flex
│ │ └── TestApp.as
├── flexmojos-archetypes-library
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ ├── META-INF
│ │ └── maven
│ │ │ └── archetype.xml
│ │ └── archetype-resources
│ │ ├── .mvn
│ │ └── extensions.xml
│ │ ├── pom.xml
│ │ └── src
│ │ ├── main
│ │ └── flex
│ │ │ └── App.as
│ │ └── test
│ │ └── flex
│ │ └── TestApp.as
├── flexmojos-archetypes-mobile-application
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ ├── META-INF
│ │ └── maven
│ │ │ └── archetype.xml
│ │ └── archetype-resources
│ │ ├── .mvn
│ │ └── extensions.xml
│ │ ├── pom.xml
│ │ └── src
│ │ └── main
│ │ ├── air
│ │ ├── descriptor.xml
│ │ └── sign.p12
│ │ └── flex
│ │ ├── MobileApplication.mxml
│ │ └── views
│ │ └── FlexmojosMobileHelloWorldView.mxml
├── flexmojos-archetypes-modular-webapp
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ ├── META-INF
│ │ └── maven
│ │ │ ├── archetype-metadata.xml
│ │ │ └── archetype.xml
│ │ └── archetype-resources
│ │ ├── .mvn
│ │ └── extensions.xml
│ │ ├── pom.xml
│ │ ├── swc
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ └── flex
│ │ │ │ └── App.as
│ │ │ └── test
│ │ │ └── flex
│ │ │ └── TestApp.as
│ │ ├── swf
│ │ ├── pom.xml
│ │ └── src
│ │ │ ├── main
│ │ │ └── flex
│ │ │ │ └── Main.mxml
│ │ │ └── test
│ │ │ └── flex
│ │ │ └── TestApp.as
│ │ └── war
│ │ ├── pom.xml
│ │ └── src
│ │ └── main
│ │ └── webapp
│ │ └── WEB-INF
│ │ └── web.xml
└── pom.xml
├── flexmojos-generator
├── flexmojos-generator-api
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ └── java
│ │ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── generator
│ │ │ ├── GenerationException.java
│ │ │ ├── GenerationRequest.java
│ │ │ ├── Generator.java
│ │ │ ├── GeneratorFactory.java
│ │ │ ├── GeneratorLogger.java
│ │ │ └── TestGenerationRequest.java
│ │ └── test
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── generator
│ │ ├── DummyGenerator.java
│ │ └── GeneratorFactoryTest.java
├── flexmojos-generator-constraints
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ └── java
│ │ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── generator
│ │ │ └── contraints
│ │ │ └── ConstraintsGenerator.java
│ │ └── test
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── generator
│ │ └── contraints
│ │ ├── ConstraintDemo.java
│ │ └── ConstraintsGeneratorTest.java
├── flexmojos-generator-graniteds-2.0.0
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── generator
│ │ └── granitedsv2d0d0
│ │ ├── Gas3Listener.java
│ │ └── GraniteDsGenerator.java
├── flexmojos-generator-graniteds-2.1.0
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── generator
│ │ └── granitedsv2d1d0
│ │ ├── Gas3Listener.java
│ │ └── GraniteDsGenerator.java
├── flexmojos-generator-graniteds-2.2.0
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── generator
│ │ └── granitedsv2d2d0
│ │ ├── Gas3Listener.java
│ │ └── GraniteDsGenerator.java
├── flexmojos-generator-graniteds-2.3.0
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── generator
│ │ └── granitedsv2d3d0
│ │ ├── Gas3Listener.java
│ │ └── GraniteDsGenerator.java
├── flexmojos-generator-graniteds-2.3.2
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── generator
│ │ └── granitedsv2d3d2
│ │ ├── Gas3Listener.java
│ │ └── GraniteDsGenerator.java
├── flexmojos-generator-graniteds-3.1.0
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── generator
│ │ └── granitedsv3d1d0
│ │ ├── Gas3Listener.java
│ │ └── GraniteDsGenerator.java
├── flexmojos-generator-internal-compiler-iface
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ └── java
│ │ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── generator
│ │ │ └── iface
│ │ │ ├── InternalIFacesGenerator.java
│ │ │ └── StringUtil.java
│ │ └── test
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── generator
│ │ └── iface
│ │ ├── IFaceGeneratorTest.java
│ │ └── StringUtilTest.java
├── flexmojos-generator-internal-threadlocal
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ └── java
│ │ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── generator
│ │ │ └── threadlocal
│ │ │ └── ThreadLocalGenerator.java
│ │ └── test
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ ├── generator
│ │ └── threadlocal
│ │ │ └── test
│ │ │ └── ThreadLocalGeneratorTest.java
│ │ └── utilities
│ │ └── FlexmojosCompilerAPIHelper.java
├── flexmojos-generator-mojo
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── generator
│ │ ├── MavenGeneratorLogger.java
│ │ └── SimpleGeneratorMojo.java
└── pom.xml
├── flexmojos-maven-plugin
├── pom.xml
└── src
│ ├── main
│ ├── java
│ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ ├── compatibilitykit
│ │ │ ├── FlexCompatibility.java
│ │ │ ├── FlexCompatibilityAspect.aj
│ │ │ ├── FlexMojo.java
│ │ │ └── VersionUtils.java
│ │ │ ├── license
│ │ │ ├── DefaultLicenseCalculator.java
│ │ │ └── LicenseCalculator.java
│ │ │ ├── plugin
│ │ │ ├── AbstractMavenMojo.java
│ │ │ ├── ChecksumEnforcerMavenExtension.java
│ │ │ ├── DependencyOrderMavenExtension.java
│ │ │ ├── RuntimeMavenResolutionException.java
│ │ │ ├── SourcePathAware.java
│ │ │ ├── air
│ │ │ │ ├── PackageAirMojo.java
│ │ │ │ └── packager
│ │ │ │ │ ├── AirPackager.java
│ │ │ │ │ ├── AndroidPackager.java
│ │ │ │ │ ├── BasePackager.java
│ │ │ │ │ ├── DesktopPackager.java
│ │ │ │ │ ├── IosPackager.java
│ │ │ │ │ ├── LinuxDebianPackager.java
│ │ │ │ │ ├── LinuxRpmPackager.java
│ │ │ │ │ ├── MacPackager.java
│ │ │ │ │ ├── Packager.java
│ │ │ │ │ ├── PackagerFactory.java
│ │ │ │ │ ├── PackagingException.java
│ │ │ │ │ ├── PackagingRequest.java
│ │ │ │ │ ├── Resolver.java
│ │ │ │ │ └── WindowsPackager.java
│ │ │ ├── artifacthandler
│ │ │ │ ├── AbstractActionScriptArtifactHandler.java
│ │ │ │ ├── AirArtifactHandler.java
│ │ │ │ ├── AneArtifactHandler.java
│ │ │ │ ├── SwcArtifactHandler.java
│ │ │ │ └── SwfArtifactHandler.java
│ │ │ ├── common
│ │ │ │ ├── ApparatLog.aj
│ │ │ │ ├── CheckFlexVersion.aj
│ │ │ │ ├── CommandLineLicenseInfo.aj
│ │ │ │ ├── FlexClassifier.java
│ │ │ │ ├── FlexExtension.java
│ │ │ │ ├── FlexScopes.java
│ │ │ │ ├── QuickMode.aj
│ │ │ │ ├── SkipExecution.aj
│ │ │ │ └── flexbridge
│ │ │ │ │ ├── MavenLogger.java
│ │ │ │ │ └── MavenPathResolver.java
│ │ │ ├── compiler
│ │ │ │ ├── AbstractFlexCompilerMojo.java
│ │ │ │ ├── AsdocMojo.java
│ │ │ │ ├── CompcMojo.java
│ │ │ │ ├── DitaAsdocMojo.java
│ │ │ │ ├── MavenApplicationDomains.java
│ │ │ │ ├── MxmlcMojo.java
│ │ │ │ ├── attributes
│ │ │ │ │ ├── MavenArtifact.java
│ │ │ │ │ ├── MavenDefaultScriptLimits.java
│ │ │ │ │ ├── MavenDefaultSize.java
│ │ │ │ │ ├── MavenExtension.java
│ │ │ │ │ ├── MavenFontsConfiguration.java
│ │ │ │ │ ├── MavenFrame.java
│ │ │ │ │ ├── MavenIncludeStylesheet.java
│ │ │ │ │ ├── MavenMetadataConfiguration.java
│ │ │ │ │ ├── MavenNamespace.java
│ │ │ │ │ ├── MavenRuntimeException.java
│ │ │ │ │ ├── Module.java
│ │ │ │ │ └── SimplifiablePattern.java
│ │ │ │ ├── continuous
│ │ │ │ │ ├── CompcContinuousCompileMojo.java
│ │ │ │ │ └── MxmlcContinuousCompileMojo.java
│ │ │ │ └── lazyload
│ │ │ │ │ ├── Cacheable.java
│ │ │ │ │ ├── LazyLoadAspect.aj
│ │ │ │ │ └── NotCacheable.java
│ │ │ ├── configuration
│ │ │ │ └── ConfigurationMojo.java
│ │ │ ├── font
│ │ │ │ ├── Font2SwfMojo.java
│ │ │ │ └── types
│ │ │ │ │ └── TranscoderType.java
│ │ │ ├── generator
│ │ │ │ └── GeneratorMojo.java
│ │ │ ├── htmlwrapper
│ │ │ │ ├── HtmlWrapperMojo.java
│ │ │ │ ├── MavenPluginUtil.java
│ │ │ │ └── Xpp3DomMap.java
│ │ │ ├── lifecyclemapping
│ │ │ │ ├── AbstractActionScriptLifecycleMapping.java
│ │ │ │ ├── AirLifecycleMapping.java
│ │ │ │ ├── SwcLifecycleMapping.java
│ │ │ │ └── SwfLifecycleMapping.java
│ │ │ ├── manifest
│ │ │ │ └── ManifestMojo.java
│ │ │ ├── optimizer
│ │ │ │ ├── AbstractOptimizerMojo.java
│ │ │ │ ├── RSLCreatorMojo.java
│ │ │ │ └── SwfOptimizerMojo.java
│ │ │ ├── packager
│ │ │ │ └── PackagerMojo.java
│ │ │ ├── report
│ │ │ │ ├── AsdocReportMojo.java
│ │ │ │ ├── CoverageReportMojo.java
│ │ │ │ └── MojoReport.aj
│ │ │ ├── source
│ │ │ │ ├── FlexSourcesMojo.java
│ │ │ │ └── SourceViewMojo.java
│ │ │ ├── test
│ │ │ │ ├── TestCompcMojo.java
│ │ │ │ ├── TestCompilerMojo.java
│ │ │ │ ├── TestMxmlcMojo.java
│ │ │ │ ├── TestRunMojo.java
│ │ │ │ └── scanners
│ │ │ │ │ ├── AS3ContentFlexClassScanner.java
│ │ │ │ │ ├── AbstractFlexClassScanner.java
│ │ │ │ │ ├── AllFlexClassScanner.java
│ │ │ │ │ ├── DisableFlexClassScanner.java
│ │ │ │ │ ├── FlexClassScanner.java
│ │ │ │ │ └── LinkReportFlexClassScanner.java
│ │ │ ├── utilities
│ │ │ │ ├── ApparatUtil.java
│ │ │ │ ├── ApplicationHandler.java
│ │ │ │ ├── CompileConfigurationLoader.java
│ │ │ │ ├── ConfigurationResolver.java
│ │ │ │ ├── FileInterpolationUtil.java
│ │ │ │ ├── MavenUtils.java
│ │ │ │ └── SourceFileResolver.java
│ │ │ └── war
│ │ │ │ └── CopyMojo.java
│ │ │ └── truster
│ │ │ ├── DefaultFlashPlayerTruster.java
│ │ │ ├── FlashPlayerTruster.java
│ │ │ ├── TrustException.java
│ │ │ └── TrusterMojo.java
│ └── resources
│ │ ├── META-INF
│ │ └── maven
│ │ │ └── lifecycle.xml
│ │ ├── configs
│ │ ├── config.xml
│ │ └── flexcover-config.xml
│ │ ├── flexmojos.properties
│ │ ├── fonts
│ │ ├── localFonts.ser
│ │ ├── macFonts.ser
│ │ └── winFonts.ser
│ │ ├── rb.swc
│ │ ├── templates
│ │ ├── flexbuilder
│ │ │ ├── actionScriptProperties.vm
│ │ │ ├── flexLibProperties.vm
│ │ │ └── flexProperties.vm
│ │ ├── test
│ │ │ ├── Air-TestRunner.vm
│ │ │ ├── TestRunner.vm
│ │ │ └── air-descriptor-template.xml
│ │ └── wrapper
│ │ │ ├── client-side-detection-with-history.zip
│ │ │ ├── client-side-detection.zip
│ │ │ ├── express-installation-with-history.zip
│ │ │ ├── express-installation.zip
│ │ │ ├── no-player-detection-with-history.zip
│ │ │ └── no-player-detection.zip
│ │ └── themes
│ │ ├── halo.swc
│ │ └── spark.css
│ ├── site-bkp
│ ├── apt
│ │ └── usage.apt
│ └── site.xml
│ └── test
│ ├── java
│ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ ├── compatibilitykit
│ │ └── test
│ │ │ └── VersionUtilsTest.java
│ │ └── plugin
│ │ ├── compiler
│ │ ├── DependencyFilteringTest.java
│ │ ├── InterfaceCompatibilityTest.java
│ │ ├── MockObject.java
│ │ ├── ResourceBundleChainingTest.java
│ │ └── issues
│ │ │ └── Flexmojos345Test.java
│ │ └── utilities
│ │ └── SourceFileResolverTest.java
│ └── resources
│ ├── abc
│ └── cba
│ │ └── test
│ ├── fileresolver
│ ├── absolute
│ │ ├── dummy.as
│ │ └── xummy.as
│ ├── artifactidas
│ │ ├── artifact.as
│ │ ├── dummy.as
│ │ ├── dummy.mxml
│ │ └── dummy.png
│ ├── artifactidmxml
│ │ ├── artifact.mxml
│ │ ├── dummy.as
│ │ ├── dummy.mxml
│ │ └── dummy.png
│ ├── indexas
│ │ ├── Index.as
│ │ ├── dummy.as
│ │ ├── dummy.mxml
│ │ └── dummy.png
│ ├── indexmxml
│ │ ├── Index.mxml
│ │ ├── dummy.as
│ │ ├── dummy.mxml
│ │ └── dummy.png
│ ├── mainas
│ │ ├── Index.as
│ │ ├── Main.as
│ │ ├── dummy.as
│ │ ├── dummy.mxml
│ │ └── dummy.png
│ ├── mainmxml
│ │ ├── Index.mxml
│ │ ├── Main.mxml
│ │ ├── dummy.as
│ │ ├── dummy.mxml
│ │ └── dummy.png
│ ├── notresolve
│ │ └── Index.mxml
│ ├── notresolvenroots
│ │ ├── root1
│ │ │ └── dummy.png
│ │ ├── root2
│ │ │ └── dummy.png
│ │ └── root3
│ │ │ └── dummy.png
│ ├── notresolvenroots2
│ │ ├── root1
│ │ │ ├── dummy.as
│ │ │ └── dummy.png
│ │ ├── root2
│ │ │ ├── dummy.mxml
│ │ │ └── dummy.png
│ │ └── root3
│ │ │ ├── dummy.png
│ │ │ └── root.as
│ ├── notresolvepackage
│ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── dummy.png
│ ├── notresolvepackageid
│ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── artifactid
│ │ │ └── dummy.png
│ ├── nroots
│ │ ├── root1
│ │ │ └── dummy.png
│ │ ├── root2
│ │ │ └── dummy.png
│ │ └── root3
│ │ │ ├── dummy.png
│ │ │ └── root.as
│ ├── packageartifact
│ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── artifactid
│ │ │ ├── dummy.png
│ │ │ └── pack.mxml
│ ├── packagegroup
│ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ ├── dummy.png
│ │ │ └── pack.as
│ ├── simple
│ │ └── thesimple.as
│ ├── uniqueas
│ │ ├── dummy.as
│ │ └── dummy.png
│ └── uniquemxml
│ │ ├── dummy.mxml
│ │ └── dummy.png
│ └── swcs
│ └── artifact-en_US-1.0.rb.swc
├── flexmojos-sandbox
├── flexmojos-configurator
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── configurator
│ │ ├── Configurator.java
│ │ └── ConfiguratorException.java
├── flexmojos-coverage-reporter
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── coverage
│ │ ├── AbstractCoverageReporter.java
│ │ ├── CoverageConfigurationImpl.java
│ │ ├── CoverageReportException.java
│ │ ├── CoverageReportRequest.java
│ │ ├── CoverageReporter.java
│ │ ├── CoverageReporterManager.java
│ │ ├── cobertura
│ │ ├── CoberturaCoverageReport.java
│ │ └── ZeroComplexityCalculator.java
│ │ ├── emma
│ │ └── EmmaCoverageReport.java
│ │ └── util
│ │ └── ApparatUtil.java
├── flexmojos-flex-compiler
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ └── java
│ │ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── compiler
│ │ │ ├── CompilerSecurityException.java
│ │ │ ├── DefaultFlexCompiler.java
│ │ │ ├── FlexCompiler.java
│ │ │ ├── MxmlcConfigurationHolder.java
│ │ │ ├── command
│ │ │ ├── Command.java
│ │ │ ├── CommandUtil.java
│ │ │ └── Result.java
│ │ │ ├── interceptor
│ │ │ ├── FalconToolInterceptor.java
│ │ │ └── FlexToolInterceptor.java
│ │ │ └── util
│ │ │ ├── DefaultFlexCompilerArgumentParser.java
│ │ │ ├── Entry.java
│ │ │ ├── FlexCompilerArgumentParser.java
│ │ │ └── ThreadLocalToolkitHelper.java
│ │ └── test
│ │ ├── java
│ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── compiler
│ │ │ ├── AbstractBaseTest.java
│ │ │ ├── DefaultFlexCompilerTest.java
│ │ │ ├── Flexmojos352Test.java
│ │ │ ├── MapLogger.java
│ │ │ ├── test
│ │ │ └── MockitoConstraints.java
│ │ │ └── util
│ │ │ ├── ArrayMatcher.java
│ │ │ └── ParseArgumentsTest.java
│ │ └── resources
│ │ └── dummy_as3
│ │ └── main.as
├── flexmojos-installer
│ ├── pom.xml
│ └── src
│ │ ├── izpack
│ │ ├── Licence.txt
│ │ ├── Readme.txt
│ │ ├── TargetDir.txt
│ │ └── install.xml
│ │ └── main
│ │ └── resources
│ │ └── settings.xml
├── flexmojos-nexus-plugin
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ └── java
│ │ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── nexus
│ │ │ └── FlexmojosStartedEventInspector.java
│ │ └── test
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── nexus
│ │ └── CheckRepositoryIT.java
├── flexmojos-sample-configurator
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── configurator
│ │ └── sample
│ │ └── SampleConfigurator.java
├── flexmojos-tester
│ ├── pom.xml
│ └── src
│ │ ├── main
│ │ └── java
│ │ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── test
│ │ │ ├── AbstractControlledThread.java
│ │ │ ├── ControlledThread.java
│ │ │ ├── DefaultTestRunner.java
│ │ │ ├── TestRequest.java
│ │ │ ├── TestRunner.java
│ │ │ ├── TestRunnerException.java
│ │ │ ├── ThreadHelper.java
│ │ │ ├── ThreadStatus.java
│ │ │ ├── launcher
│ │ │ ├── AsVmLauncher.java
│ │ │ ├── FlashPlayerShutdownHook.java
│ │ │ ├── InvalidSwfException.java
│ │ │ └── LaunchFlashPlayerException.java
│ │ │ ├── monitor
│ │ │ ├── AbstractSocketThread.java
│ │ │ ├── AsVmPing.java
│ │ │ ├── CommConstraints.java
│ │ │ └── ResultHandler.java
│ │ │ └── report
│ │ │ ├── ErrorReport.java
│ │ │ ├── TestCaseReport.java
│ │ │ ├── TestCoverageReport.java
│ │ │ └── TestMethodReport.java
│ │ └── test
│ │ ├── java
│ │ └── net
│ │ │ ├── codehaus
│ │ │ └── plexus
│ │ │ │ └── PlexusTestNGCase.java
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── test
│ │ │ ├── launcher
│ │ │ ├── AbstractAsVmLauncherTest.java
│ │ │ ├── AsVmLauncherTest.java
│ │ │ └── InvalidPlayerTest.java
│ │ │ ├── monitor
│ │ │ ├── AsVmPingTest.java
│ │ │ └── ResultHandlerTest.java
│ │ │ └── util
│ │ │ └── TestXmlParser.java
│ │ └── resources
│ │ ├── NonExit.swf
│ │ └── SelftExit.swf
├── flexmojos-threadlocaltoolkit-wrapper
│ └── pom.xml
└── pom.xml
├── flexmojos-super-poms
├── licenses.txt
├── pom.xml
└── src
│ ├── main
│ └── resources
│ │ ├── air.pom
│ │ ├── common.pom
│ │ └── flex.pom
│ └── site
│ ├── apt
│ ├── examples
│ │ └── example.apt
│ ├── index.apt
│ └── usage.apt
│ ├── fml
│ └── faq.fml
│ └── site.xml
├── flexmojos-testing
├── flexmojos-test-harness
│ ├── pom.xml
│ ├── projects
│ │ ├── concept
│ │ │ ├── advanced-telemetry
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── advancedflex-example
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ ├── main
│ │ │ │ │ └── flex
│ │ │ │ │ │ └── main.mxml
│ │ │ │ │ └── test
│ │ │ │ │ └── flex
│ │ │ │ │ ├── TestCaseSample1.as
│ │ │ │ │ └── TestCaseSample2.as
│ │ │ ├── archetype
│ │ │ │ └── KEEP.ME
│ │ │ ├── asunit-example
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ ├── main
│ │ │ │ │ └── flex
│ │ │ │ │ │ └── main.mxml
│ │ │ │ │ └── test
│ │ │ │ │ └── flex
│ │ │ │ │ └── ExampleTest.as
│ │ │ ├── attach-asdoc
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── net
│ │ │ │ │ └── flexmojos
│ │ │ │ │ └── oss
│ │ │ │ │ └── it
│ │ │ │ │ ├── Amarelo.as
│ │ │ │ │ ├── Azul.as
│ │ │ │ │ ├── Verde.as
│ │ │ │ │ └── Vermelho.as
│ │ │ ├── benchmark
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ ├── Module1.mxml
│ │ │ │ │ ├── Module2.mxml
│ │ │ │ │ ├── Module3.mxml
│ │ │ │ │ ├── Module4.mxml
│ │ │ │ │ ├── Module5.mxml
│ │ │ │ │ ├── Module6.mxml
│ │ │ │ │ └── main.mxml
│ │ │ ├── configurator
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── copy-flex-resources-with-hash
│ │ │ │ ├── pom.xml
│ │ │ │ ├── swf
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ ├── main.mxml
│ │ │ │ │ │ └── modules
│ │ │ │ │ │ ├── module1.mxml
│ │ │ │ │ │ └── module2.mxml
│ │ │ │ └── war
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── webapp
│ │ │ │ │ └── WEB-INF
│ │ │ │ │ └── web.xml
│ │ │ ├── copy-flex-resources
│ │ │ │ ├── pom.xml
│ │ │ │ ├── swf
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ ├── main.mxml
│ │ │ │ │ │ └── modules
│ │ │ │ │ │ ├── module1.mxml
│ │ │ │ │ │ └── module2.mxml
│ │ │ │ └── war
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── webapp
│ │ │ │ │ └── WEB-INF
│ │ │ │ │ └── web.xml
│ │ │ ├── downgrade-sdk2
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── downgrade-sdk3
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── downgrade-sdk4
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── encrypt-test
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ ├── Application.mxml
│ │ │ │ │ ├── module1
│ │ │ │ │ └── AnModule.mxml
│ │ │ │ │ └── module2
│ │ │ │ │ └── OtherModule.as
│ │ │ ├── flash-player-10
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── flashplayertrust
│ │ │ │ └── pom.xml
│ │ │ ├── flex-sdk
│ │ │ │ └── pom.xml
│ │ │ ├── flex4-gumbo
│ │ │ │ ├── fxg-manifest.xml
│ │ │ │ ├── gumbo-manifest.xml
│ │ │ │ ├── mxml-2009-manifest.xml
│ │ │ │ ├── mxml-manifest.xml
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── Flex4App.mxml
│ │ │ ├── flexunit-example
│ │ │ │ ├── pom.xml
│ │ │ │ ├── src
│ │ │ │ │ └── com
│ │ │ │ │ │ └── adobe
│ │ │ │ │ │ └── example
│ │ │ │ │ │ └── Calculator.as
│ │ │ │ └── tests
│ │ │ │ │ └── com
│ │ │ │ │ └── adobe
│ │ │ │ │ └── example
│ │ │ │ │ ├── TestCalculator.as
│ │ │ │ │ └── TestCalculator2.as
│ │ │ ├── flexunit4-example
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ ├── main
│ │ │ │ │ └── flex
│ │ │ │ │ │ └── main.mxml
│ │ │ │ │ └── test
│ │ │ │ │ └── flex
│ │ │ │ │ └── AnnotatedTest.as
│ │ │ ├── fluint-example
│ │ │ │ ├── fail
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ │ └── main.mxml
│ │ │ │ │ │ └── test
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ └── fluint
│ │ │ │ │ │ └── ExampleTest.as
│ │ │ │ └── pass
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ ├── main
│ │ │ │ │ └── flex
│ │ │ │ │ │ └── main.mxml
│ │ │ │ │ └── test
│ │ │ │ │ └── flex
│ │ │ │ │ └── fluint
│ │ │ │ │ └── ExampleTest.as
│ │ │ ├── funit-example
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ ├── main
│ │ │ │ │ └── flex
│ │ │ │ │ │ └── main.mxml
│ │ │ │ │ └── test
│ │ │ │ │ └── flex
│ │ │ │ │ └── tests
│ │ │ │ │ └── funit
│ │ │ │ │ ├── comparers
│ │ │ │ │ ├── DateComparerTests.as
│ │ │ │ │ ├── NumericComparerTests.as
│ │ │ │ │ └── StringComparerTests.as
│ │ │ │ │ └── utils
│ │ │ │ │ ├── DescribeTypeTests.as
│ │ │ │ │ ├── GetBaseClassTests.as
│ │ │ │ │ ├── GetClassByNameTests.as
│ │ │ │ │ ├── GetClassTests.as
│ │ │ │ │ ├── GetQualifiedBaseClassNameTests.as
│ │ │ │ │ ├── GetQualifiedClassNameTests.as
│ │ │ │ │ ├── GetSimpleBaseClassNameTests.as
│ │ │ │ │ └── GetSimpleClassNameTests.as
│ │ │ ├── hello-world-no-inherit
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── html-template-application
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── l10n-locale-chain
│ │ │ │ ├── app
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ │ └── App.mxml
│ │ │ │ │ │ └── test
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ └── L10NTest.as
│ │ │ │ ├── lib
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ ├── flex
│ │ │ │ │ │ └── net
│ │ │ │ │ │ │ └── flexmojos
│ │ │ │ │ │ │ └── oss
│ │ │ │ │ │ │ └── l10n
│ │ │ │ │ │ │ └── Resource.as
│ │ │ │ │ │ └── locales
│ │ │ │ │ │ ├── en_US
│ │ │ │ │ │ └── text.properties
│ │ │ │ │ │ └── pt_PT
│ │ │ │ │ │ └── text.properties
│ │ │ │ └── pom.xml
│ │ │ ├── l10n-swc-swf
│ │ │ │ ├── app
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ └── FlexMojosLocaleApp.mxml
│ │ │ │ ├── lib
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ ├── flex
│ │ │ │ │ │ └── com
│ │ │ │ │ │ │ └── xyz
│ │ │ │ │ │ │ └── view
│ │ │ │ │ │ │ └── MainView.mxml
│ │ │ │ │ │ └── locales
│ │ │ │ │ │ ├── en_US
│ │ │ │ │ │ └── text.properties
│ │ │ │ │ │ └── ja_JP
│ │ │ │ │ │ └── text.properties
│ │ │ │ └── pom.xml
│ │ │ ├── l10n-swf
│ │ │ │ ├── FlightReservation1
│ │ │ │ │ ├── locale
│ │ │ │ │ │ ├── en_US
│ │ │ │ │ │ │ └── FlightReservation1.properties
│ │ │ │ │ │ └── ja_JP
│ │ │ │ │ │ │ └── FlightReservation1.properties
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── FlightReservation1.mxml
│ │ │ │ │ │ ├── Flights.xml
│ │ │ │ │ │ └── Timezones.xml
│ │ │ │ ├── FlightReservation2
│ │ │ │ │ ├── locale
│ │ │ │ │ │ ├── en_US
│ │ │ │ │ │ │ └── FlightReservation2.properties
│ │ │ │ │ │ └── ja_JP
│ │ │ │ │ │ │ └── FlightReservation2.properties
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── FlightReservation2.mxml
│ │ │ │ │ │ ├── Flights.xml
│ │ │ │ │ │ └── Timezones.xml
│ │ │ │ ├── FlightReservation2Package
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── webapp
│ │ │ │ │ │ └── WEB-INF
│ │ │ │ │ │ └── web.xml
│ │ │ │ └── localized-dependency-test
│ │ │ │ │ ├── localized-application
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ ├── flex
│ │ │ │ │ │ └── MyApplication.mxml
│ │ │ │ │ │ └── locales
│ │ │ │ │ │ ├── da_DK
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ ├── de_DE
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ ├── en_US
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ ├── es_ES
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ ├── fi_FI
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ ├── fr_FR
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ ├── it_IT
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ ├── ja_JP
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ ├── ko_KR
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ ├── nb_NO
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ ├── nl_NL
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ ├── pt_BR
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ ├── se_SV
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ ├── zh_CN
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ │ └── zh_TW
│ │ │ │ │ │ └── resources.properties
│ │ │ │ │ ├── localized-library
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ ├── flex
│ │ │ │ │ │ └── i18n
│ │ │ │ │ │ │ └── MyComponent.mxml
│ │ │ │ │ │ └── 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
│ │ │ │ │ └── pom.xml
│ │ │ ├── manifest
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ ├── assets
│ │ │ │ │ └── pf_ronda_seven.ttf
│ │ │ │ │ └── com
│ │ │ │ │ └── bit101
│ │ │ │ │ └── components
│ │ │ │ │ ├── CheckBox.as
│ │ │ │ │ ├── ColorChooser.as
│ │ │ │ │ ├── Component.as
│ │ │ │ │ ├── HBox.as
│ │ │ │ │ ├── HSlider.as
│ │ │ │ │ ├── HUISlider.as
│ │ │ │ │ ├── IndicatorLight.as
│ │ │ │ │ ├── InputText.as
│ │ │ │ │ ├── Knob.as
│ │ │ │ │ ├── Label.as
│ │ │ │ │ ├── Meter.as
│ │ │ │ │ ├── Panel.as
│ │ │ │ │ ├── ProgressBar.as
│ │ │ │ │ ├── PushButton.as
│ │ │ │ │ ├── RadioButton.as
│ │ │ │ │ ├── RotarySelector.as
│ │ │ │ │ ├── Slider.as
│ │ │ │ │ ├── Style.as
│ │ │ │ │ ├── Text.as
│ │ │ │ │ ├── UISlider.as
│ │ │ │ │ ├── VBox.as
│ │ │ │ │ ├── VSlider.as
│ │ │ │ │ ├── VUISlider.as
│ │ │ │ │ ├── WheelMenu.as
│ │ │ │ │ └── Window.as
│ │ │ ├── merged-sources
│ │ │ │ ├── module1
│ │ │ │ │ └── pom.xml
│ │ │ │ ├── module2
│ │ │ │ │ └── pom.xml
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ ├── AClass.as
│ │ │ │ │ ├── Module1.mxml
│ │ │ │ │ └── Module2.mxml
│ │ │ ├── metadata-test
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── multiple-versions
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── native-air
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ ├── main
│ │ │ │ │ ├── air
│ │ │ │ │ │ ├── descriptor.xml
│ │ │ │ │ │ └── sign.p12
│ │ │ │ │ └── flex
│ │ │ │ │ │ └── main.mxml
│ │ │ │ │ └── test
│ │ │ │ │ └── flex
│ │ │ │ │ └── AnnotatedTest.as
│ │ │ ├── optimized-application
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── HelloWorld.as
│ │ │ ├── optimized-flex-library
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── HelloWorld.as
│ │ │ ├── rpc-hfcd-sdk
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── rsl
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── Main.mxml
│ │ │ ├── runtime-css
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ ├── ComplexStyles.css
│ │ │ │ │ └── main.mxml
│ │ │ ├── simple-air-application
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ ├── air
│ │ │ │ │ ├── main-app.xml
│ │ │ │ │ └── sign.p12
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── simple-air-library
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── HelloWorld.as
│ │ │ ├── simple-air-sdk3
│ │ │ │ ├── air
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── air
│ │ │ │ │ │ ├── descriptor.xml
│ │ │ │ │ │ └── sign.p12
│ │ │ │ ├── pom.xml
│ │ │ │ ├── swc
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ └── Label.mxml
│ │ │ │ └── swf
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── simple-air
│ │ │ │ ├── air
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ ├── air
│ │ │ │ │ │ ├── descriptor.xml
│ │ │ │ │ │ └── sign.p12
│ │ │ │ │ │ └── resources
│ │ │ │ │ │ └── descriptor.xml
│ │ │ │ ├── pom.xml
│ │ │ │ ├── swc
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ └── Label.mxml
│ │ │ │ └── swf
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── simple-flex-application
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── simple-flex-library
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── HelloWorld.as
│ │ │ ├── simple-flex-modular
│ │ │ │ ├── application
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ └── application.mxml
│ │ │ │ ├── library
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ └── info
│ │ │ │ │ │ └── rvin
│ │ │ │ │ │ └── itest
│ │ │ │ │ │ ├── MxmlClass.as
│ │ │ │ │ │ └── ScriptClass.as
│ │ │ │ ├── module
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ └── main.mxml
│ │ │ │ └── pom.xml
│ │ │ ├── simple-generation
│ │ │ │ ├── flex
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ └── main.mxml
│ │ │ │ ├── java
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── java
│ │ │ │ │ │ └── net
│ │ │ │ │ │ └── flexmojos
│ │ │ │ │ │ └── oss
│ │ │ │ │ │ ├── SimpleEnum.java
│ │ │ │ │ │ ├── SimpleInterface.java
│ │ │ │ │ │ └── SimplePojo.java
│ │ │ │ └── pom.xml
│ │ │ ├── simplify-air
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ ├── main
│ │ │ │ │ ├── air
│ │ │ │ │ │ ├── descriptor.xml
│ │ │ │ │ │ └── sign.p12
│ │ │ │ │ ├── flex
│ │ │ │ │ │ └── main.mxml
│ │ │ │ │ └── resources
│ │ │ │ │ │ ├── 128.png
│ │ │ │ │ │ ├── 16.png
│ │ │ │ │ │ ├── 32.png
│ │ │ │ │ │ └── 48.png
│ │ │ │ │ └── test
│ │ │ │ │ └── flex
│ │ │ │ │ └── AnnotatedTest.as
│ │ │ ├── sources
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── transitive-dependencies
│ │ │ │ ├── A
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ └── A.as
│ │ │ │ ├── B
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ └── B.as
│ │ │ │ ├── internalLib
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ └── flex
│ │ │ │ │ │ └── C.as
│ │ │ │ └── pom.xml
│ │ │ ├── updated-sdk
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ └── versioning
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── main.mxml
│ │ ├── coverage
│ │ │ ├── asdoc-inclusion-exclusion
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ ├── flex
│ │ │ │ │ ├── Documentable.as
│ │ │ │ │ └── net
│ │ │ │ │ │ └── flexmojos
│ │ │ │ │ │ └── oss
│ │ │ │ │ │ └── it
│ │ │ │ │ │ ├── Amarelo.as
│ │ │ │ │ │ ├── Azul.as
│ │ │ │ │ │ ├── Verde.as
│ │ │ │ │ │ └── Vermelho.as
│ │ │ │ │ └── resources
│ │ │ │ │ ├── manifest.xml
│ │ │ │ │ └── nd-manifest.xml
│ │ │ ├── compilation-options
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ ├── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ │ └── resources
│ │ │ │ │ └── fonts.ser
│ │ │ ├── htmlwrapper-templates
│ │ │ │ ├── folder
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ └── main
│ │ │ │ │ │ ├── flex
│ │ │ │ │ │ └── main.mxml
│ │ │ │ │ │ └── resources
│ │ │ │ │ │ └── template
│ │ │ │ │ │ ├── AC_OETags.js
│ │ │ │ │ │ └── index.template.html
│ │ │ │ ├── pom.xml
│ │ │ │ └── zip
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ ├── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ │ └── resources
│ │ │ │ │ └── template.zip
│ │ │ └── source-file-resolver
│ │ │ │ ├── application-forced
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ ├── Forced.mxml
│ │ │ │ │ ├── Index.mxml
│ │ │ │ │ └── Main.mxml
│ │ │ │ ├── application-index
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ ├── AnotherFile.mxml
│ │ │ │ │ └── Index.mxml
│ │ │ │ ├── application-main
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ ├── AnotherFile.mxml
│ │ │ │ │ ├── Index.mxml
│ │ │ │ │ └── Main.mxml
│ │ │ │ ├── application-not-default
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── MyCustomName.mxml
│ │ │ │ ├── groupId
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── groupId
│ │ │ │ │ └── Main.mxml
│ │ │ │ ├── groupIdArtifactId
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── groupIdArtifactId
│ │ │ │ │ └── Main.mxml
│ │ │ │ └── pom.xml
│ │ ├── features
│ │ │ └── flashplayer-ignore-return-codes
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ └── test
│ │ │ │ └── flex
│ │ │ │ └── AnnotatedTest.as
│ │ ├── intro
│ │ │ ├── hello-spark
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ ├── hello-world-no-inherit
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ └── hello-world
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── main.mxml
│ │ └── issues
│ │ │ ├── flexmojos-102
│ │ │ ├── pom
│ │ │ │ ├── other
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── assemblies
│ │ │ │ │ │ └── main.xml
│ │ │ │ │ │ └── main
│ │ │ │ │ │ ├── not-wrapped
│ │ │ │ │ │ └── test-unwrapped.html
│ │ │ │ │ │ └── wrapped
│ │ │ │ │ │ └── test.html
│ │ │ │ ├── pom.xml
│ │ │ │ └── swf
│ │ │ │ │ ├── pom.xml
│ │ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── Main.mxml
│ │ │ └── war
│ │ │ │ ├── pom.xml
│ │ │ │ ├── swf
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── Main.mxml
│ │ │ │ └── war
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── webapp
│ │ │ │ ├── WEB-INF
│ │ │ │ ├── excluded.txt
│ │ │ │ └── web.xml
│ │ │ │ ├── index.jsp
│ │ │ │ └── not-included.html
│ │ │ ├── flexmojos-130
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ ├── main.mxml
│ │ │ │ └── net
│ │ │ │ └── flexmojos
│ │ │ │ └── oss
│ │ │ │ └── it
│ │ │ │ └── AClass.as
│ │ │ ├── flexmojos-136
│ │ │ ├── app
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── Main.as
│ │ │ ├── lib
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── A.as
│ │ │ └── pom.xml
│ │ │ ├── flexmojos-141
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── main.mxml
│ │ │ ├── flexmojos-145
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ ├── additional1.mxml
│ │ │ │ ├── additional2.mxml
│ │ │ │ ├── additional3.mxml
│ │ │ │ └── main.mxml
│ │ │ ├── flexmojos-146
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── main.mxml
│ │ │ ├── flexmojos-147
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── main.mxml
│ │ │ ├── flexmojos-159
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── Main.mxml
│ │ │ ├── flexmojos-167
│ │ │ ├── a
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── Main.mxml
│ │ │ ├── b
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── Main.css
│ │ │ └── pom.xml
│ │ │ ├── flexmojos-168
│ │ │ ├── classifier
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── Main.mxml
│ │ │ └── skip
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── Main.mxml
│ │ │ ├── flexmojos-183
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ ├── flex
│ │ │ │ └── Main.as
│ │ │ │ └── resources
│ │ │ │ └── Polsku.ttf
│ │ │ ├── flexmojos-220
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ ├── main.mxml
│ │ │ │ └── module
│ │ │ │ └── module.mxml
│ │ │ ├── flexmojos-230
│ │ │ ├── moduleA
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── AClass.as
│ │ │ ├── moduleB
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── BClass.as
│ │ │ └── pom.xml
│ │ │ ├── flexmojos-247
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ ├── AClass.as
│ │ │ │ ├── BClass.as
│ │ │ │ └── p
│ │ │ │ ├── CClass.as
│ │ │ │ └── DClass.as
│ │ │ ├── flexmojos-248
│ │ │ ├── m.xml
│ │ │ ├── p1.xml
│ │ │ ├── p2.xml
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ ├── Module1.mxml
│ │ │ │ ├── Module2.mxml
│ │ │ │ └── main.mxml
│ │ │ ├── flexmojos-251
│ │ │ ├── pom.xml
│ │ │ ├── swf
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ └── Main.mxml
│ │ │ └── war
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── webapp
│ │ │ │ ├── WEB-INF
│ │ │ │ ├── excluded.txt
│ │ │ │ └── web.xml
│ │ │ │ ├── index.jsp
│ │ │ │ └── not-included.html
│ │ │ ├── flexmojos-252
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── main.mxml
│ │ │ ├── flexmojos-315
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ ├── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ └── resources
│ │ │ │ │ └── shortlogo.png
│ │ │ │ └── test
│ │ │ │ ├── flex
│ │ │ │ └── AnnotatedTest.as
│ │ │ │ └── resources
│ │ │ │ └── logo.png
│ │ │ ├── flexmojos-321
│ │ │ └── multiple
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ └── test
│ │ │ │ └── flex
│ │ │ │ └── AnnotatedTest.as
│ │ │ ├── flexmojos-334
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── FlexMaven
│ │ │ │ │ ├── App.as
│ │ │ │ │ ├── UntestedClass.as
│ │ │ │ │ ├── sampleInclude.as
│ │ │ │ │ └── unusedInclude.as
│ │ │ │ └── test
│ │ │ │ └── flex
│ │ │ │ └── FlexMaven
│ │ │ │ └── TestApp.as
│ │ │ ├── flexmojos-350
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ └── test
│ │ │ │ └── flex
│ │ │ │ └── AnnotatedTest.as
│ │ │ ├── flexmojos-395
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ ├── flex
│ │ │ │ │ ├── main.mxml
│ │ │ │ │ └── net
│ │ │ │ │ │ └── flexmojos
│ │ │ │ │ │ └── oss
│ │ │ │ │ │ └── l10n
│ │ │ │ │ │ └── Resource.as
│ │ │ │ └── locales
│ │ │ │ │ ├── en_US
│ │ │ │ │ └── text.properties
│ │ │ │ │ └── es_MX
│ │ │ │ │ └── text.properties
│ │ │ │ └── test
│ │ │ │ └── flex
│ │ │ │ └── AnnotatedTest.as
│ │ │ ├── flexmojos-44
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ └── test
│ │ │ │ └── flex
│ │ │ │ ├── Template.vm
│ │ │ │ └── dummy
│ │ │ │ └── DummyTest.as
│ │ │ ├── flexmojos-52
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ └── template
│ │ │ │ ├── AC_OETags.js
│ │ │ │ └── index.template.html
│ │ │ ├── flexmojos-67
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ └── test
│ │ │ │ └── flex
│ │ │ │ └── TimeoutTest.as
│ │ │ ├── flexmojos-872
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ └── test
│ │ │ │ └── flex
│ │ │ │ └── unittest
│ │ │ │ ├── ParametrizedTestWithErrorsTest.as
│ │ │ │ ├── ParametrizedTestWithFailuresTest.as
│ │ │ │ └── ParametrizedTestWithoutFailuresTest.as
│ │ │ ├── issue-0008-1
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── main.mxml
│ │ │ ├── issue-0008-2
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ └── test
│ │ │ │ └── flex
│ │ │ │ ├── LimboFile.as
│ │ │ │ └── readme.txt
│ │ │ ├── issue-0011
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ ├── Application.mxml
│ │ │ │ ├── module1
│ │ │ │ └── AnModule.mxml
│ │ │ │ └── module2
│ │ │ │ └── OtherModule.as
│ │ │ ├── issue-0013
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── com
│ │ │ │ │ └── adobe
│ │ │ │ │ └── example
│ │ │ │ │ └── Calculator.as
│ │ │ │ └── test
│ │ │ │ └── flex
│ │ │ │ └── com
│ │ │ │ └── adobe
│ │ │ │ └── example
│ │ │ │ ├── TestCalculator.as
│ │ │ │ └── TestCalculatorAgain.as
│ │ │ ├── issue-0014
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ └── test
│ │ │ │ └── flex
│ │ │ │ └── com
│ │ │ │ └── adobe
│ │ │ │ └── example
│ │ │ │ └── TestErrorLaunch.as
│ │ │ ├── issue-0015
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── com
│ │ │ │ │ └── adobe
│ │ │ │ │ └── example
│ │ │ │ │ └── Calculator.as
│ │ │ │ └── test
│ │ │ │ └── flex
│ │ │ │ └── com
│ │ │ │ └── adobe
│ │ │ │ └── example
│ │ │ │ ├── TestCalculator.as
│ │ │ │ └── TestCalculatorAgain.as
│ │ │ ├── issue-0017
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ └── test
│ │ │ │ └── flex
│ │ │ │ └── AnnotatedTest.as
│ │ │ ├── issue-0027
│ │ │ └── pom.xml
│ │ │ ├── issue-0029
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ ├── issue29.mxml
│ │ │ │ ├── pusssa.ttf
│ │ │ │ └── styles.css
│ │ │ ├── issue-0039
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── main.mxml
│ │ │ ├── issue-0044
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── main.mxml
│ │ │ ├── issue-0061
│ │ │ ├── flex
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ ├── main
│ │ │ │ │ └── flex
│ │ │ │ │ │ └── main.mxml
│ │ │ │ │ └── test
│ │ │ │ │ └── flex
│ │ │ │ │ └── tests
│ │ │ │ │ └── InheritTest.as
│ │ │ ├── java
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── java
│ │ │ │ │ └── net
│ │ │ │ │ └── flexmojos
│ │ │ │ │ └── oss
│ │ │ │ │ └── generator
│ │ │ │ │ ├── SimpleChild.java
│ │ │ │ │ └── SimplePojo.java
│ │ │ └── pom.xml
│ │ │ ├── issue-0066
│ │ │ ├── flex
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── flex
│ │ │ │ │ ├── main.mxml
│ │ │ │ │ └── net
│ │ │ │ │ └── flexmojos
│ │ │ │ │ └── oss
│ │ │ │ │ └── generator
│ │ │ │ │ └── SimplePojo.as
│ │ │ ├── java
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── java
│ │ │ │ │ └── net
│ │ │ │ │ └── flexmojos
│ │ │ │ │ └── oss
│ │ │ │ │ └── generator
│ │ │ │ │ ├── AnotherPojo.java
│ │ │ │ │ └── SimplePojo.java
│ │ │ └── pom.xml
│ │ │ ├── issue-0067
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ ├── main.mxml
│ │ │ │ └── net
│ │ │ │ └── flexmojos
│ │ │ │ └── oss
│ │ │ │ └── it
│ │ │ │ └── AClass.as
│ │ │ ├── issue-0068
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── main.mxml
│ │ │ ├── issue-0069
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ ├── main
│ │ │ │ └── flex
│ │ │ │ │ └── main.mxml
│ │ │ │ └── test
│ │ │ │ ├── flex
│ │ │ │ └── net
│ │ │ │ │ └── flexmojos
│ │ │ │ │ └── oss
│ │ │ │ │ └── test
│ │ │ │ │ └── ServiceTest.as
│ │ │ │ └── resources
│ │ │ │ └── source.xml
│ │ │ ├── issue-0070
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ ├── flex
│ │ │ │ └── Main.mxml
│ │ │ │ └── locales
│ │ │ │ └── en_US
│ │ │ │ └── foo.properties
│ │ │ ├── issue-0076
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ ├── flex
│ │ │ │ └── HelloWorld.as
│ │ │ │ └── locales
│ │ │ │ ├── en_US
│ │ │ │ └── data_model.properties
│ │ │ │ └── es_ES
│ │ │ │ └── data_model.properties
│ │ │ ├── issue-0098
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── main.mxml
│ │ │ ├── issue-0099
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ ├── flex
│ │ │ │ └── Main.mxml
│ │ │ │ └── resources
│ │ │ │ └── icon.png
│ │ │ ├── issue-0103
│ │ │ └── project
│ │ │ │ ├── atBase.txt
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── resources
│ │ │ │ ├── aFolder
│ │ │ │ └── onFolder.txt
│ │ │ │ └── resourceRoot.txt
│ │ │ ├── issue-0105
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── main.mxml
│ │ │ ├── issue-0106
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── main.mxml
│ │ │ ├── issue-0115
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ └── MyCustomApplication.mxml
│ │ │ ├── issue-0134
│ │ │ ├── flex
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ ├── flex
│ │ │ │ │ └── Validate.as
│ │ │ │ │ └── resources
│ │ │ │ │ ├── bean.gsp
│ │ │ │ │ └── beanBase.gsp
│ │ │ ├── java
│ │ │ │ ├── pom.xml
│ │ │ │ └── src
│ │ │ │ │ └── main
│ │ │ │ │ └── java
│ │ │ │ │ └── test
│ │ │ │ │ └── TestValueObject.java
│ │ │ └── pom.xml
│ │ │ ├── issue-0152
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ │ └── main
│ │ │ │ └── flex
│ │ │ │ ├── Application.mxml
│ │ │ │ └── module
│ │ │ │ └── AnModule.mxml
│ │ │ └── non-localized
│ │ │ ├── pom.xml
│ │ │ ├── src
│ │ │ └── com
│ │ │ │ └── adobe
│ │ │ │ └── example
│ │ │ │ └── Calculator.as
│ │ │ └── tests
│ │ │ └── com
│ │ │ └── adobe
│ │ │ └── example
│ │ │ └── TestCalculator.as
│ └── src
│ │ ├── mrm
│ │ └── settings.xml
│ │ └── test
│ │ ├── java
│ │ ├── junit
│ │ │ └── framework
│ │ │ │ └── Assert.java
│ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ ├── test
│ │ │ ├── FMVerifier.java
│ │ │ ├── IT0013IssuesTest.java
│ │ │ ├── IT0014ConceptTest.java
│ │ │ ├── IT0015CoverageTest.java
│ │ │ └── ProgressListener.java
│ │ │ └── tests
│ │ │ ├── AbstractFlexMojosTests.java
│ │ │ ├── IT0091HelloWordTest.java
│ │ │ ├── concept
│ │ │ ├── AbstractConceptTest.java
│ │ │ ├── AdvancedFlexTest.java
│ │ │ ├── AdvancedTelemetryTest.java
│ │ │ ├── AirTest.java
│ │ │ ├── ArchetypesTest.java
│ │ │ ├── AsUnitTest.java
│ │ │ ├── AttachAsdocTest.java
│ │ │ ├── ConfiguratorTest.java
│ │ │ ├── CopyMojoTest.java
│ │ │ ├── DowngradeTest.java
│ │ │ ├── FUnitTest.java
│ │ │ ├── FlexUnit4Test.java
│ │ │ ├── FlexUnitTest.java
│ │ │ ├── FluintUnitTest.java
│ │ │ ├── GeneratorTest.java
│ │ │ ├── L10NTest.java
│ │ │ ├── ManifestTest.java
│ │ │ ├── MergedModulesTest.java
│ │ │ ├── MetadataTest.java
│ │ │ ├── MultipleVersionsTest.java
│ │ │ ├── OptimizationTest.java
│ │ │ ├── TestSwfTest.java
│ │ │ ├── TransitiveDependenciesTest.java
│ │ │ └── TrustTest.java
│ │ │ ├── coverage
│ │ │ ├── AbstractCoverageTest.java
│ │ │ ├── HtmlWrapperTemplateTest.java
│ │ │ └── SourceFileResolverTest.java
│ │ │ ├── features
│ │ │ └── FlashPlayerIgnoreReturnCodesTest.java
│ │ │ └── issues
│ │ │ ├── AbstractIssueTest.java
│ │ │ ├── Flexmojos102Test.java
│ │ │ ├── Flexmojos130Test.java
│ │ │ ├── Flexmojos136Test.java
│ │ │ ├── Flexmojos141Test.java
│ │ │ ├── Flexmojos145Test.java
│ │ │ ├── Flexmojos146Test.java
│ │ │ ├── Flexmojos147Test.java
│ │ │ ├── Flexmojos159Test.java
│ │ │ ├── Flexmojos167Test.java
│ │ │ ├── Flexmojos168Test.java
│ │ │ ├── Flexmojos183Test.java
│ │ │ ├── Flexmojos220Test.java
│ │ │ ├── Flexmojos230Test.java
│ │ │ ├── Flexmojos233Test.java
│ │ │ ├── Flexmojos247Test.java
│ │ │ ├── Flexmojos248Test.java
│ │ │ ├── Flexmojos251Test.java
│ │ │ ├── Flexmojos252Test.java
│ │ │ ├── Flexmojos315Test.java
│ │ │ ├── Flexmojos321Test.java
│ │ │ ├── Flexmojos334Test.java
│ │ │ ├── Flexmojos350Test.java
│ │ │ ├── Flexmojos355Test.java
│ │ │ ├── Flexmojos395Test.java
│ │ │ ├── Flexmojos44Test.java
│ │ │ ├── Flexmojos52Test.java
│ │ │ ├── Flexmojos67Test.java
│ │ │ ├── Flexmojos872Test.java
│ │ │ ├── Issue0008Test.java
│ │ │ ├── Issue0013Test.java
│ │ │ ├── Issue0015Test.java
│ │ │ ├── Issue0017Test.java
│ │ │ ├── Issue0027Test.java
│ │ │ ├── Issue0039Test.java
│ │ │ ├── Issue0044Test.java
│ │ │ ├── Issue0066Test.java
│ │ │ ├── Issue0067Test.java
│ │ │ ├── Issue0069Test.java
│ │ │ ├── Issue0076Test.java
│ │ │ ├── Issue0098Test.java
│ │ │ ├── Issue0099Test.java
│ │ │ ├── Issue0103Test.java
│ │ │ ├── Issue0105Test.java
│ │ │ ├── Issue0106Test.java
│ │ │ ├── Issue0115Test.java
│ │ │ ├── Issue0134Test.java
│ │ │ ├── Issue0152Test.java
│ │ │ └── IssueLocalizationTest.java
│ │ ├── resources
│ │ ├── baseTest.properties
│ │ ├── readme.txt
│ │ └── settings.xml
│ │ └── scala
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ └── tests
│ │ └── matcher
│ │ └── ClassMatcher.scala
├── flexmojos-unittest
│ ├── flexmojos-test-coverage
│ │ ├── pom.xml
│ │ └── src
│ │ │ └── main
│ │ │ └── flex
│ │ │ └── apparat
│ │ │ └── coverage
│ │ │ └── Coverage.as
│ ├── flexmojos-unittest-advancedflex
│ │ ├── pom.xml
│ │ └── src
│ │ │ └── main
│ │ │ └── flex
│ │ │ ├── advancedflex
│ │ │ └── debugger
│ │ │ │ └── aut
│ │ │ │ └── framework
│ │ │ │ └── ProtectedConsole.as
│ │ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── unitestingsupport
│ │ │ └── advancedflex
│ │ │ └── AdvancedFlexListener.as
│ ├── flexmojos-unittest-asunit
│ │ ├── pom.xml
│ │ └── src
│ │ │ └── main
│ │ │ └── flex
│ │ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── unitestingsupport
│ │ │ └── asunit
│ │ │ └── AsUnitListener.as
│ ├── flexmojos-unittest-flexunit
│ │ ├── pom.xml
│ │ └── src
│ │ │ └── main
│ │ │ └── flex
│ │ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── unitestingsupport
│ │ │ └── flexunit
│ │ │ └── FlexUnitListener.as
│ ├── flexmojos-unittest-flexunit4
│ │ ├── pom.xml
│ │ └── src
│ │ │ └── main
│ │ │ └── flex
│ │ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── unitestingsupport
│ │ │ └── flexunit4
│ │ │ └── FlexUnit4Listener.as
│ ├── flexmojos-unittest-fluint
│ │ ├── pom.xml
│ │ └── src
│ │ │ └── main
│ │ │ └── flex
│ │ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── unitestingsupport
│ │ │ └── fluint
│ │ │ └── FluintListener.as
│ ├── flexmojos-unittest-funit
│ │ ├── pom.xml
│ │ └── src
│ │ │ └── main
│ │ │ └── flex
│ │ │ └── net
│ │ │ └── flexmojos
│ │ │ └── oss
│ │ │ └── unitestingsupport
│ │ │ └── funit
│ │ │ └── FUnitListener.as
│ ├── flexmojos-unittest-support
│ │ ├── pom.xml
│ │ └── src
│ │ │ └── main
│ │ │ ├── flex
│ │ │ ├── net
│ │ │ │ └── flexmojos
│ │ │ │ │ └── oss
│ │ │ │ │ ├── coverage
│ │ │ │ │ └── CoverageDataCollector.as
│ │ │ │ │ ├── test
│ │ │ │ │ └── report
│ │ │ │ │ │ ├── ErrorReport.as
│ │ │ │ │ │ ├── TestCaseReport.as
│ │ │ │ │ │ ├── TestCoverageReport.as
│ │ │ │ │ │ └── TestMethodReport.as
│ │ │ │ │ └── unitestingsupport
│ │ │ │ │ ├── CloseController.as
│ │ │ │ │ ├── ControlSocket.as
│ │ │ │ │ ├── ITestApplication.as
│ │ │ │ │ ├── SocketReporter.as
│ │ │ │ │ ├── TestAirApplication.as
│ │ │ │ │ ├── TestApplication.as
│ │ │ │ │ ├── UnitTestRunner.as
│ │ │ │ │ └── util
│ │ │ │ │ └── ClassnameUtil.as
│ │ │ └── org
│ │ │ │ └── codehaus
│ │ │ │ └── plexus
│ │ │ │ └── util
│ │ │ │ └── xml
│ │ │ │ └── Xpp3Dom.as
│ │ │ └── template
│ │ │ ├── bean.gsp
│ │ │ └── beanBase.gsp
│ └── pom.xml
└── pom.xml
├── flexmojos-touchstone
├── filled
│ └── filled-swf
│ │ └── html-template
│ │ └── playerProductInstall.swf
└── optimization
│ └── src
│ └── picture.png
├── flexmojos-util
├── pom.xml
└── src
│ ├── main
│ └── java
│ │ └── net
│ │ └── flexmojos
│ │ └── oss
│ │ ├── matcher
│ │ ├── artifact
│ │ │ ├── AbstractArtifactMatcher.java
│ │ │ ├── ArtifactMatcher.java
│ │ │ └── DependencyMatcher.java
│ │ ├── collection
│ │ │ └── CollectionsMatcher.java
│ │ └── file
│ │ │ └── FileMatcher.java
│ │ └── util
│ │ ├── CollectionUtils.java
│ │ ├── OSUtils.java
│ │ ├── PathUtil.java
│ │ └── SocketUtil.java
│ └── test
│ └── java
│ └── net
│ └── flexmojos
│ └── oss
│ ├── matcher
│ └── artifact
│ │ └── ArtifactMatcherTest.java
│ └── util
│ └── PathUtilTest.java
├── pom.xml
└── src
├── etc
└── header.txt
└── site
├── apt
└── index.apt
├── site.xml
└── template.vm
/.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
--------------------------------------------------------------------------------
/.mvn/extensions.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 | org.apache.flex.utilities.converter
7 | flex-sdk-converter-maven-extension
8 | 1.0.0-SNAPSHOT
9 |
10 |
11 |
--------------------------------------------------------------------------------
/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-archetypes/flexmojos-archetypes-application/src/main/resources/archetype-resources/.mvn/extensions.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 | org.apache.flex.utilities.converter
6 | flex-sdk-converter-maven-extension
7 | 1.0.0-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/flexmojos-archetypes/flexmojos-archetypes-library/src/main/resources/archetype-resources/.mvn/extensions.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 | org.apache.flex.utilities.converter
6 | flex-sdk-converter-maven-extension
7 | 1.0.0-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/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-mobile-application/src/main/resources/archetype-resources/.mvn/extensions.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 | org.apache.flex.utilities.converter
6 | flex-sdk-converter-maven-extension
7 | 1.0.0-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/flexmojos-archetypes/flexmojos-archetypes-mobile-application/src/main/resources/archetype-resources/src/main/air/sign.p12:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-archetypes/flexmojos-archetypes-mobile-application/src/main/resources/archetype-resources/src/main/air/sign.p12
--------------------------------------------------------------------------------
/flexmojos-archetypes/flexmojos-archetypes-mobile-application/src/main/resources/archetype-resources/src/main/flex/views/FlexmojosMobileHelloWorldView.mxml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/flexmojos-archetypes/flexmojos-archetypes-modular-webapp/src/main/resources/archetype-resources/.mvn/extensions.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 | org.apache.flex.utilities.converter
6 | flex-sdk-converter-maven-extension
7 | 1.0.0-SNAPSHOT
8 |
9 |
--------------------------------------------------------------------------------
/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-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-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-maven-plugin/src/main/java/net/flexmojos/oss/plugin/air/packager/LinuxDebianPackager.java:
--------------------------------------------------------------------------------
1 | package net.flexmojos.oss.plugin.air.packager;
2 |
3 | import org.codehaus.plexus.component.annotations.Component;
4 |
5 | import java.io.File;
6 |
7 | /**
8 | * Created by christoferdutz on 18.07.15.
9 | */
10 | @Component( role = Packager.class, hint = "linux-debian" )
11 | public class LinuxDebianPackager extends DesktopPackager {
12 |
13 | @Override
14 | protected File getOutputFile() {
15 | return new File(request.getBuildDir(), request.getFinalName() +
16 | ((request.getClassifier() != null) ? "-" + request.getClassifier() : "") +".deb");
17 | }
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/java/net/flexmojos/oss/plugin/air/packager/LinuxRpmPackager.java:
--------------------------------------------------------------------------------
1 | package net.flexmojos.oss.plugin.air.packager;
2 |
3 | import org.codehaus.plexus.component.annotations.Component;
4 |
5 | import java.io.File;
6 |
7 | /**
8 | * Created by christoferdutz on 18.07.15.
9 | */
10 | @Component( role = Packager.class, hint = "linux-rpm" )
11 | public class LinuxRpmPackager extends DesktopPackager {
12 |
13 | @Override
14 | protected File getOutputFile() {
15 | return new File(request.getBuildDir(), request.getFinalName() +
16 | ((request.getClassifier() != null) ? "-" + request.getClassifier() : "") +".rpm");
17 | }
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/java/net/flexmojos/oss/plugin/air/packager/MacPackager.java:
--------------------------------------------------------------------------------
1 | package net.flexmojos.oss.plugin.air.packager;
2 |
3 | import org.codehaus.plexus.component.annotations.Component;
4 |
5 | import java.io.File;
6 |
7 | /**
8 | * Created by christoferdutz on 18.07.15.
9 | */
10 | @Component( role = Packager.class, hint = "mac" )
11 | public class MacPackager extends DesktopPackager {
12 |
13 | @Override
14 | protected File getOutputFile() {
15 | return new File(request.getBuildDir(), request.getFinalName() +
16 | ((request.getClassifier() != null) ? "-" + request.getClassifier() : "") + (request.isIncludeCaptiveRuntime() ? ".app" : ".dmg"));
17 | }
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/java/net/flexmojos/oss/plugin/air/packager/Packager.java:
--------------------------------------------------------------------------------
1 | package net.flexmojos.oss.plugin.air.packager;
2 |
3 | import java.io.File;
4 |
5 | /**
6 | * Created by christoferdutz on 16.07.15.
7 | */
8 | public interface Packager {
9 |
10 | void setRequest(PackagingRequest request);
11 |
12 | /**
13 | * Method that allows implmenting platform dependant validation of the
14 | * configuration.
15 | */
16 | void validateConfiguration() throws PackagingException;
17 |
18 | /**
19 | * Method to setup the work-directory as the adt packaging requires
20 | * a directory structure similar to the AIR sdk we only want to copy
21 | * and unpack stuff if it's not already there.
22 | * @return true if the directory was created, false if it was already there.
23 | * @throws PackagingException something went wrong.
24 | */
25 | boolean prepare() throws PackagingException;
26 |
27 | /**
28 | * Actually perform the packaging.
29 | * @throws PackagingException something went wrong.
30 | */
31 | File execute() throws PackagingException;
32 |
33 | }
34 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/java/net/flexmojos/oss/plugin/air/packager/PackagerFactory.java:
--------------------------------------------------------------------------------
1 | package net.flexmojos.oss.plugin.air.packager;
2 |
3 | import org.codehaus.plexus.component.annotations.Component;
4 | import org.codehaus.plexus.component.annotations.Requirement;
5 |
6 | import java.util.Map;
7 |
8 | /**
9 | * Created by christoferdutz on 16.07.15.
10 | */
11 | @Component( role = PackagerFactory.class )
12 | public class PackagerFactory {
13 |
14 | @Requirement(role = Packager.class)
15 | private Map packagers;
16 |
17 | public Packager getPackager(PackagingRequest packagingRequest) {
18 | //return new MacPackager();
19 | return packagers.get(packagingRequest.getTargetPlatform().toLowerCase());
20 | }
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/java/net/flexmojos/oss/plugin/air/packager/WindowsPackager.java:
--------------------------------------------------------------------------------
1 | package net.flexmojos.oss.plugin.air.packager;
2 |
3 | import org.codehaus.plexus.component.annotations.Component;
4 |
5 | import java.io.File;
6 |
7 | /**
8 | * Created by christoferdutz on 18.07.15.
9 | */
10 | @Component( role = Packager.class, hint = "windows" )
11 | public class WindowsPackager extends DesktopPackager {
12 |
13 | @Override
14 | protected File getOutputFile() {
15 | return new File(request.getBuildDir(), request.getFinalName() +
16 | ((request.getClassifier() != null) ? "-" + request.getClassifier() : "") +".exe");
17 | }
18 |
19 | @Override
20 | public File execute() throws PackagingException {
21 | if (!System.getProperty("os.name").startsWith("Win")) {
22 | throw new PackagingException("Can't create Windows packages on a non windows machine.");
23 | }
24 | return super.execute();
25 | }
26 |
27 | }
28 |
--------------------------------------------------------------------------------
/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-maven-plugin/src/main/resources/configs/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/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/main/resources/fonts/localFonts.ser:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/main/resources/fonts/localFonts.ser
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/resources/fonts/macFonts.ser:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/main/resources/fonts/macFonts.ser
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/resources/fonts/winFonts.ser:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/main/resources/fonts/winFonts.ser
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/resources/rb.swc:
--------------------------------------------------------------------------------
1 | PK
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/resources/templates/flexbuilder/flexProperties.vm:
--------------------------------------------------------------------------------
1 |
2 |
21 |
22 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/resources/templates/wrapper/client-side-detection-with-history.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/main/resources/templates/wrapper/client-side-detection-with-history.zip
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/resources/templates/wrapper/client-side-detection.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/main/resources/templates/wrapper/client-side-detection.zip
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/resources/templates/wrapper/express-installation-with-history.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/main/resources/templates/wrapper/express-installation-with-history.zip
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/resources/templates/wrapper/express-installation.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/main/resources/templates/wrapper/express-installation.zip
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/resources/templates/wrapper/no-player-detection-with-history.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/main/resources/templates/wrapper/no-player-detection-with-history.zip
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/resources/templates/wrapper/no-player-detection.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/main/resources/templates/wrapper/no-player-detection.zip
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/main/resources/themes/halo.swc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/main/resources/themes/halo.swc
--------------------------------------------------------------------------------
/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-maven-plugin/src/test/resources/abc/cba/test:
--------------------------------------------------------------------------------
1 | test file
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/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/artifactidas/dummy.mxml:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidas/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidas/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidmxml/artifact.mxml:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidmxml/dummy.mxml:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidmxml/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/artifactidmxml/dummy.png
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/indexas/dummy.mxml:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/indexas/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/indexas/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/indexmxml/Index.mxml:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/indexmxml/dummy.mxml:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/indexmxml/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/indexmxml/dummy.png
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/mainas/dummy.mxml:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/mainas/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/mainas/dummy.png
--------------------------------------------------------------------------------
/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.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 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/mainmxml/dummy.mxml:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/mainmxml/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/mainmxml/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolve/Index.mxml:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots/root1/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots/root1/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots/root2/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots/root2/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots/root3/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots/root3/dummy.png
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots2/root1/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots2/root1/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots2/root2/dummy.mxml:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots2/root2/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots2/root2/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots2/root3/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvenroots2/root3/dummy.png
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvepackage/net/flexmojos/oss/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvepackage/net/flexmojos/oss/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvepackageid/net/flexmojos/oss/artifactid/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/notresolvepackageid/net/flexmojos/oss/artifactid/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/nroots/root1/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/nroots/root1/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/nroots/root2/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/nroots/root2/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/nroots/root3/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/nroots/root3/dummy.png
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/packageartifact/net/flexmojos/oss/artifactid/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/packageartifact/net/flexmojos/oss/artifactid/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/packageartifact/net/flexmojos/oss/artifactid/pack.mxml:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/packagegroup/net/flexmojos/oss/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/packagegroup/net/flexmojos/oss/dummy.png
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/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,
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 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/uniqueas/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/uniqueas/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/uniquemxml/dummy.mxml:
--------------------------------------------------------------------------------
1 |
20 |
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/fileresolver/uniquemxml/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/fileresolver/uniquemxml/dummy.png
--------------------------------------------------------------------------------
/flexmojos-maven-plugin/src/test/resources/swcs/artifact-en_US-1.0.rb.swc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-maven-plugin/src/test/resources/swcs/artifact-en_US-1.0.rb.swc
--------------------------------------------------------------------------------
/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-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,
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 | import flash.display.Sprite;
21 | public class main extends Sprite {}
22 | }
--------------------------------------------------------------------------------
/flexmojos-sandbox/flexmojos-installer/src/izpack/Readme.txt:
--------------------------------------------------------------------------------
1 | A readme file ...
--------------------------------------------------------------------------------
/flexmojos-sandbox/flexmojos-installer/src/izpack/TargetDir.txt:
--------------------------------------------------------------------------------
1 | $APPLICATIONS_DEFAULT_ROOT $FILE_SEPARATORflexmojos
--------------------------------------------------------------------------------
/flexmojos-sandbox/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-sandbox/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-sandbox/flexmojos-tester/src/test/resources/NonExit.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-sandbox/flexmojos-tester/src/test/resources/NonExit.swf
--------------------------------------------------------------------------------
/flexmojos-sandbox/flexmojos-tester/src/test/resources/SelftExit.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-sandbox/flexmojos-tester/src/test/resources/SelftExit.swf
--------------------------------------------------------------------------------
/flexmojos-super-poms/src/site/apt/examples/example.apt:
--------------------------------------------------------------------------------
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 |
20 | Compile library
21 |
22 | Possible example for compiler use.
23 | TODO
--------------------------------------------------------------------------------
/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/archetype/KEEP.ME:
--------------------------------------------------------------------------------
1 | just a keep me file, needed for ArchetypesTest
--------------------------------------------------------------------------------
/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/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/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/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/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/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/funit-example/src/main/flex/main.mxml:
--------------------------------------------------------------------------------
1 |
2 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/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-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/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/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/concept/l10n-swf/FlightReservation2Package/src/main/webapp/WEB-INF/web.xml:
--------------------------------------------------------------------------------
1 |
20 | -->
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/concept/manifest/src/assets/pf_ronda_seven.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/concept/manifest/src/assets/pf_ronda_seven.ttf
--------------------------------------------------------------------------------
/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-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/concept/native-air/src/main/air/sign.p12:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/concept/native-air/src/main/air/sign.p12
--------------------------------------------------------------------------------
/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/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/rpc-hfcd-sdk/src/main/flex/main.mxml:
--------------------------------------------------------------------------------
1 |
2 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/flexmojos-testing/flexmojos-test-harness/projects/concept/rsl/src/main/flex/Main.mxml:
--------------------------------------------------------------------------------
1 |
20 |
21 |
--------------------------------------------------------------------------------
/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/simple-air-application/src/main/air/sign.p12:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/concept/simple-air-application/src/main/air/sign.p12
--------------------------------------------------------------------------------
/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/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-air-sdk3/air/src/main/air/sign.p12:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/concept/simple-air-sdk3/air/src/main/air/sign.p12
--------------------------------------------------------------------------------
/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/concept/simple-air/air/src/main/air/sign.p12:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/concept/simple-air/air/src/main/air/sign.p12
--------------------------------------------------------------------------------
/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-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-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/simple-flex-modular/module/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/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 |
--------------------------------------------------------------------------------
/flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/air/sign.p12:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/air/sign.p12
--------------------------------------------------------------------------------
/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/concept/simplify-air/src/main/resources/128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/resources/128.png
--------------------------------------------------------------------------------
/flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/resources/16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/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/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/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/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/concept/simplify-air/src/main/resources/48.png
--------------------------------------------------------------------------------
/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/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/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/concept/updated-sdk/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/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/coverage/compilation-options/src/main/resources/fonts.ser:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/coverage/compilation-options/src/main/resources/fonts.ser
--------------------------------------------------------------------------------
/flexmojos-testing/flexmojos-test-harness/projects/coverage/htmlwrapper-templates/zip/src/main/resources/template.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/coverage/htmlwrapper-templates/zip/src/main/resources/template.zip
--------------------------------------------------------------------------------
/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-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/coverage/source-file-resolver/application-main/src/main/flex/Index.mxml:
--------------------------------------------------------------------------------
1 |
20 | //Is empty because should not be used
21 |
--------------------------------------------------------------------------------
/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/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-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-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/issues/flexmojos-141/src/main/flex/main.mxml:
--------------------------------------------------------------------------------
1 |
2 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/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/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/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-168/skip/src/main/flex/Main.mxml:
--------------------------------------------------------------------------------
1 |
2 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-183/src/main/resources/Polsku.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-183/src/main/resources/Polsku.ttf
--------------------------------------------------------------------------------
/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-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/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/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-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/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/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-315/src/main/resources/shortlogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-315/src/main/resources/shortlogo.png
--------------------------------------------------------------------------------
/flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-315/src/test/resources/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/issues/flexmojos-315/src/test/resources/logo.png
--------------------------------------------------------------------------------
/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/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/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-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/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-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-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-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/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-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 |
--------------------------------------------------------------------------------
/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/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-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-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/issues/issue-0014/src/main/flex/main.mxml:
--------------------------------------------------------------------------------
1 |
2 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0029/src/main/flex/pusssa.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0029/src/main/flex/pusssa.ttf
--------------------------------------------------------------------------------
/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-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-testing/flexmojos-test-harness/projects/issues/issue-0069/src/test/resources/source.xml:
--------------------------------------------------------------------------------
1 |
20 | velo
21 |
--------------------------------------------------------------------------------
/flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0070/src/main/flex/Main.mxml:
--------------------------------------------------------------------------------
1 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/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-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/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/issues/issue-0099/src/main/resources/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-testing/flexmojos-test-harness/projects/issues/issue-0099/src/main/resources/icon.png
--------------------------------------------------------------------------------
/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/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/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-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-testing/flexmojos-test-harness/projects/issues/issue-0152/src/main/flex/Application.mxml:
--------------------------------------------------------------------------------
1 |
2 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/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-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-touchstone/filled/filled-swf/html-template/playerProductInstall.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-touchstone/filled/filled-swf/html-template/playerProductInstall.swf
--------------------------------------------------------------------------------
/flexmojos-touchstone/optimization/src/picture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chrisdutz/flexmojos/2a4e8df66781ec0a1e308fb3cd0903a770589898/flexmojos-touchstone/optimization/src/picture.png
--------------------------------------------------------------------------------