Repository: flex-falcon Updated Branches: refs/heads/feature/flexmojos-tests 142af1891 -> 2c4f63117
http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/2c4f6311/flexmojos-tests/advanced-telemetry-not-supported/pom.xml ---------------------------------------------------------------------- diff --git a/flexmojos-tests/advanced-telemetry-not-supported/pom.xml b/flexmojos-tests/advanced-telemetry-not-supported/pom.xml new file mode 100644 index 0000000..fa179d1 --- /dev/null +++ b/flexmojos-tests/advanced-telemetry-not-supported/pom.xml @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + + <modelVersion>4.0.0</modelVersion> + + <groupId>org.apache.flex.compiler.falcon.tests</groupId> + <artifactId>advanced-telemetry-not-supported</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>swf</packaging> + + <build> + <sourceDirectory>src/main/flex</sourceDirectory> + <plugins> + <plugin> + <groupId>net.flexmojos.oss</groupId> + <artifactId>flexmojos-maven-plugin</artifactId> + <version>7.1.0-SNAPSHOT</version> + <extensions>true</extensions> + <configuration> + <advancedTelemetry>true</advancedTelemetry> + </configuration> + <dependencies> + <dependency> + <groupId>org.apache.flex.compiler</groupId> + <artifactId>falcon-compiler</artifactId> + <version>0.0.3-SNAPSHOT</version> + </dependency> + </dependencies> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>org.apache.flex</groupId> + <artifactId>framework</artifactId> + <version>4.13.0.20140701</version> + <type>pom</type> + </dependency> + <dependency> + <groupId>com.adobe.flash.framework</groupId> + <artifactId>playerglobal</artifactId> + <version>13.0</version> + <type>swc</type> + </dependency> + </dependencies> + +</project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/2c4f6311/flexmojos-tests/advanced-telemetry-not-supported/src/main/flex/TestApplication.mxml ---------------------------------------------------------------------- diff --git a/flexmojos-tests/advanced-telemetry-not-supported/src/main/flex/TestApplication.mxml b/flexmojos-tests/advanced-telemetry-not-supported/src/main/flex/TestApplication.mxml new file mode 100644 index 0000000..8d6968f --- /dev/null +++ b/flexmojos-tests/advanced-telemetry-not-supported/src/main/flex/TestApplication.mxml @@ -0,0 +1,25 @@ +<?xml version="1.0"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--> +<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" + xmlns:s="library://ns.adobe.com/flex/spark"> + + <s:Label text="Application with advanced telemetry"/> + +</s:Application> http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/2c4f6311/flexmojos-tests/pom.xml ---------------------------------------------------------------------- diff --git a/flexmojos-tests/pom.xml b/flexmojos-tests/pom.xml index f47cd4a..e341e0d 100644 --- a/flexmojos-tests/pom.xml +++ b/flexmojos-tests/pom.xml @@ -101,6 +101,11 @@ Problem area: When including an mx:Repeater, Falcon produces operand stack underflow exceptions. --> <module>mx-repeater</module> + + <!-- + Problem area: the advancedTelemetry option doesn't seem to be supported. + --> + <module>advanced-telemetry-not-supported</module> </modules> </project> \ No newline at end of file
