You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2016/03/19 14:00:22 UTC

[6/9] git commit: [flex-falcon] [refs/heads/feature/maven-migration] - Made the gcl extern compile

Made the gcl extern compile


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/45200968
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/45200968
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/45200968

Branch: refs/heads/feature/maven-migration
Commit: 45200968614f39ca7611885e3cd479ae1fed5df0
Parents: 243d848
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Sat Mar 19 13:45:07 2016 +0100
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Sat Mar 19 13:45:07 2016 +0100

----------------------------------------------------------------------
 externs/GCL/pom.xml                            | 29 +++++++++++++++++++++
 externs/GCL/src/main/config/compile-config.xml |  6 ++---
 2 files changed, 32 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/45200968/externs/GCL/pom.xml
----------------------------------------------------------------------
diff --git a/externs/GCL/pom.xml b/externs/GCL/pom.xml
index 6fae9b2..70ce8e0 100644
--- a/externs/GCL/pom.xml
+++ b/externs/GCL/pom.xml
@@ -17,7 +17,36 @@
 
     <build>
         <plugins>
+            <plugin>
+                <groupId>org.apache.flex.flexjs.compiler</groupId>
+                <artifactId>flexjs-maven-plugin</artifactId>
+                <version>0.6.0-SNAPSHOT</version>
+                <executions>
+                    <execution>
+                        <id>compile</id>
+                        <phase>compile</phase>
+                        <goals>
+                            <goal>compile</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.apache.flex.flexjs.compiler</groupId>
+                        <artifactId>compiler-jx</artifactId>
+                        <version>0.6.0-SNAPSHOT</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
         </plugins>
     </build>
 
+    <dependencies>
+        <!--dependency>
+            <groupId>org.apache.flex.flexjs.compiler</groupId>
+            <artifactId>flex-compiler-externs-js</artifactId>
+            <version>0.6.0-SNAPSHOT</version>
+        </dependency-->
+    </dependencies>
+
 </project>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/45200968/externs/GCL/src/main/config/compile-config.xml
----------------------------------------------------------------------
diff --git a/externs/GCL/src/main/config/compile-config.xml b/externs/GCL/src/main/config/compile-config.xml
index 715ef39..a4a24ac 100644
--- a/externs/GCL/src/main/config/compile-config.xml
+++ b/externs/GCL/src/main/config/compile-config.xml
@@ -52,11 +52,11 @@
         -->
 
         <external-library-path>
-            <path-element>../js/out/bin/js.swc</path-element>
+            <path-element>../../../../js/target/flex-compiler-externs-js-0.6.0-SNAPSHOT.swc</path-element>
         </external-library-path>
         
         <source-path>
-            <path-element>src</path-element>
+            <path-element>../flex</path-element>
             <!--<path-element>out/as/classes</path-element>
             <path-element>out/as/interfaces</path-element>
             <path-element>out/as/constants</path-element>
@@ -69,7 +69,7 @@
     </compiler>
 
     <include-sources>
-            <path-element>src</path-element>
+        <path-element>../flex</path-element>
         <!--<path-element>out/as/classes</path-element>
         <path-element>out/as/interfaces</path-element>
         <path-element>out/as/constants</path-element>