Repository: flex-falcon Updated Branches: refs/heads/feature/flexmojos-tests 6c30186a4 -> 609dd49b1
- Added one more test reproducing a problem I encountered. Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/609dd49b Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/609dd49b Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/609dd49b Branch: refs/heads/feature/flexmojos-tests Commit: 609dd49b1784dbcc22f221b84cfd276632dbcae6 Parents: 6c30186 Author: cdutz <[email protected]> Authored: Sat Oct 25 16:03:14 2014 +0200 Committer: cdutz <[email protected]> Committed: Sat Oct 25 16:03:14 2014 +0200 ---------------------------------------------------------------------- flexmojos-tests/bindable-interface/pom.xml | 44 ++++++++++++++++++++ .../src/main/flex/TestInterface.as | 12 ++++++ flexmojos-tests/pom.xml | 5 +++ 3 files changed, 61 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/609dd49b/flexmojos-tests/bindable-interface/pom.xml ---------------------------------------------------------------------- diff --git a/flexmojos-tests/bindable-interface/pom.xml b/flexmojos-tests/bindable-interface/pom.xml new file mode 100644 index 0000000..034500e --- /dev/null +++ b/flexmojos-tests/bindable-interface/pom.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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>bindable-interface</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>swc</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> + <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/609dd49b/flexmojos-tests/bindable-interface/src/main/flex/TestInterface.as ---------------------------------------------------------------------- diff --git a/flexmojos-tests/bindable-interface/src/main/flex/TestInterface.as b/flexmojos-tests/bindable-interface/src/main/flex/TestInterface.as new file mode 100644 index 0000000..03a0fac --- /dev/null +++ b/flexmojos-tests/bindable-interface/src/main/flex/TestInterface.as @@ -0,0 +1,12 @@ +/** + * Created by cdutz on 25.10.2014. + */ +package { + +[Bindable] +public interface TestInterface { + + function someFunct():void; + +} +} http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/609dd49b/flexmojos-tests/pom.xml ---------------------------------------------------------------------- diff --git a/flexmojos-tests/pom.xml b/flexmojos-tests/pom.xml index c7c73ff..115bf02 100644 --- a/flexmojos-tests/pom.xml +++ b/flexmojos-tests/pom.xml @@ -73,6 +73,11 @@ --> <module>optimize-swf</module> <module>optimize-swc</module> + + <!-- + Problem area: When annotating an Interface with Bindable, this causes problems. + --> + <module>bindable-interface</module> </modules> </project> \ No newline at end of file
