Merge branch 'develop' of https://github.com/apache/royale-compiler into develop
diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index b4ab8d3..dc7cc9e 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -22,11 +22,11 @@
     <parent>

         <groupId>org.apache.royale.compiler</groupId>

         <artifactId>royale-compiler-parent</artifactId>

-        <version>0.9.9-SNAPSHOT</version>

+        <version>0.9.8-SNAPSHOT</version>

     </parent>

 

     <artifactId>compiler-common</artifactId>

-    <version>0.9.9-SNAPSHOT</version>

+    <version>0.9.8-SNAPSHOT</version>

 

     <name>Apache Royale: Compiler: Compiler-Common</name>

     <description>The Apache Royale Compiler Common classes</description>

diff --git a/compiler-externc/pom.xml b/compiler-externc/pom.xml
index 7764db7..77fdbbc 100644
--- a/compiler-externc/pom.xml
+++ b/compiler-externc/pom.xml
@@ -22,11 +22,11 @@
   <parent>

     <groupId>org.apache.royale.compiler</groupId>

     <artifactId>royale-compiler-parent</artifactId>

-    <version>0.9.9-SNAPSHOT</version>

+    <version>0.9.8-SNAPSHOT</version>

   </parent>

 

   <artifactId>compiler-externc</artifactId>

-  <version>0.9.9-SNAPSHOT</version>

+  <version>0.9.8-SNAPSHOT</version>

 

   <name>Apache Royale: Compiler: Externc</name>

   <description>The Apache Royale Compiler Externs Compiler</description>

@@ -254,7 +254,7 @@
     <dependency>

       <groupId>org.apache.royale.compiler</groupId>

       <artifactId>compiler-common</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

+      <version>0.9.8-SNAPSHOT</version>

     </dependency>

     <dependency>

       <groupId>com.google.javascript</groupId>

@@ -265,7 +265,7 @@
     <dependency>

       <groupId>org.apache.royale.compiler</groupId>

       <artifactId>compiler-test-utils</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

+      <version>0.9.8-SNAPSHOT</version>

       <scope>test</scope>

     </dependency>

     <dependency>

diff --git a/compiler-jx/pom.xml b/compiler-jx/pom.xml
index 34d894e..500de78 100644
--- a/compiler-jx/pom.xml
+++ b/compiler-jx/pom.xml
@@ -1,247 +1,247 @@
-<?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/xsd/maven-4.0.0.xsd">

-  <modelVersion>4.0.0</modelVersion>

-

-  <parent>

-    <groupId>org.apache.royale.compiler</groupId>

-    <artifactId>royale-compiler-parent</artifactId>

-    <version>0.9.9-SNAPSHOT</version>

-  </parent>

-

-  <artifactId>compiler-jx</artifactId>

-  <version>0.9.9-SNAPSHOT</version>

-

-  <name>Apache Royale: Compiler: Compiler-JX</name>

-

-  <build>

-    <plugins>

-      <plugin>

-        <groupId>org.apache.maven.plugins</groupId>

-        <artifactId>maven-jar-plugin</artifactId>

-        <configuration>

-          <archive>

-            <manifestEntries>

-              <Sealed>false</Sealed>

-              <!-- These paths are all defined the way the layout will be in the distribution -->

-              <Class-Path>commons-io.jar guava.jar ../../lib/external/antlr.jar  ../../lib/external/antlr-runtime.jar ../../lib/external/commons-lang.jar ../../lib/external/closure-compiler.jar ../../lib/compiler.jar ../../lib/compiler-common.jar</Class-Path>

-            </manifestEntries>

-          </archive>

-        </configuration>

-      </plugin>

-

-      <plugin>

-        <groupId>org.apache.maven.plugins</groupId>

-        <artifactId>maven-resources-plugin</artifactId>

-        <executions>

-          <execution>

-            <id>copy-externc-resources</id>

-            <phase>process-test-resources</phase>

-            <goals>

-              <goal>copy-resources</goal>

-            </goals>

-          <configuration>

-          <outputDirectory>${basedir}/../compiler-externc/target</outputDirectory>

-            <resources>

-              <resource>

-                <directory>${basedir}/../compiler-externc/src/test/config</directory>

-              </resource>

-            </resources>

-          </configuration>

-        </execution>

-        <execution>

-          <id>copy-custom-resources</id>

-          <phase>process-test-resources</phase>

-          <goals>

-            <goal>copy-resources</goal>

-          </goals>

-          <configuration>

-            <outputDirectory>${basedir}/target</outputDirectory>

-            <resources>

-              <resource>

-                <directory>${basedir}/src/test/config</directory>

-              </resource>

-            </resources>

-          </configuration>

-        </execution>

-      </executions>

-    </plugin>

-      <!-- Make the surefire execute all unit-tests -->

-      <plugin>

-        <groupId>org.apache.maven.plugins</groupId>

-        <artifactId>maven-surefire-plugin</artifactId>

-        <configuration>

-          <includes>

-            <include>org/**/Test*.java</include>

-          </includes>

-          <excludes>

-            <exclude>**/TestRoyaleFile.java</exclude>

-            <exclude>**/TestRoyaleMXML*.java</exclude>

-            <exclude>**/TestSourceMapMXML*.java</exclude>

-            <exclude>**/TestMXML*.java</exclude>

-            <exclude>**/TestRoyaleClass.java</exclude>

-            <exclude>**/TestTypedefsCompile.java</exclude>

-          </excludes>

-        </configuration>

-      </plugin>

-

-      <plugin>

-        <groupId>org.apache.maven.plugins</groupId>

-        <artifactId>maven-failsafe-plugin</artifactId>

-        <configuration>

-          <includes>

-            <include>**/TestMXML*.java</include>

-          </includes>

-          <excludes>

-            <exclude>**/TestTypedefsCompile.java</exclude>

-          </excludes>

-        </configuration>

-      </plugin>

-    

-      <plugin>

-        <groupId>org.codehaus.mojo</groupId>

-        <artifactId>exec-maven-plugin</artifactId>

-        <executions>

-          <execution>

-              <id>generate-test-js-typedefs</id>

-              <phase>test-compile</phase>

-              <goals>

-                  <goal>exec</goal>

-              </goals>

-              <configuration>

-                  <executable>java</executable>

-                  <arguments>

-                      <argument>-classpath</argument>

-                      <classpath />

-                      <arguments>org.apache.royale.compiler.clients.EXTERNC</arguments>

-                      <argument>-load-config+=../compiler-externc/src/test/config/externc-config.xml</argument>

-                  </arguments>

-              </configuration>

-          </execution>

-          <execution>

-              <id>generate-test-js-swc</id>

-              <phase>test-compile</phase>

-              <goals>

-                  <goal>exec</goal>

-              </goals>

-              <configuration>

-                  <executable>java</executable>

-                  <arguments>

-                      <argument>-classpath</argument>

-                      <classpath />

-                      <arguments>org.apache.royale.compiler.clients.COMPJSC</arguments>

-                      <argument>-targets=SWF</argument>

-                      <argument>-load-config+=../compiler-externc/target/compile-as-config.xml</argument>

-                      <argument>-output=../compiler-externc/target/js.swc</argument>

-                  </arguments>

-              </configuration>

-          </execution>

-          <execution>

-              <id>generate-test-custom-swc</id>

-              <phase>test-compile</phase>

-              <goals>

-                  <goal>exec</goal>

-              </goals>

-              <configuration>

-                  <executable>java</executable>

-                  <arguments>

-                      <argument>-classpath</argument>

-                      <classpath />

-                      <arguments>org.apache.royale.compiler.clients.COMPJSC</arguments>

-                      <argument>-load-config+=target/compile-js-config.xml</argument>

-                      <argument>-output=target/custom.swc</argument>

-                  </arguments>

-              </configuration>

-          </execution>

-        </executions>

-      </plugin>

-    </plugins>

-  </build>

-

-  <dependencies>

-    <dependency>

-      <groupId>org.apache.royale.compiler</groupId>

-      <artifactId>compiler-common</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

-    </dependency>

-    <dependency>

-      <groupId>org.apache.royale.compiler</groupId>

-      <artifactId>compiler-externc</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

-    </dependency>

-    <dependency>

-      <groupId>org.apache.royale.compiler</groupId>

-      <artifactId>compiler-playerglobalc</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

-    </dependency>

-    <dependency>

-      <groupId>org.apache.royale.compiler</groupId>

-      <artifactId>compiler</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

-    </dependency>

-    <dependency>

-      <groupId>org.apache.commons</groupId>

-      <artifactId>commons-compress</artifactId>

-      <version>1.11</version>

-    </dependency>

-    <dependency>

-      <groupId>commons-lang</groupId>

-      <artifactId>commons-lang</artifactId>

-      <version>2.6</version>

-    </dependency>

-

-    <dependency>

-      <groupId>args4j</groupId>

-      <artifactId>args4j</artifactId>

-      <version>2.33</version>

-    </dependency>

-    <dependency>

-      <groupId>com.google.javascript</groupId>

-      <artifactId>closure-compiler</artifactId>

-      <version>v20181210</version>

-    </dependency>

-    <dependency>

-      <groupId>org.clojure</groupId>

-      <artifactId>google-closure-library</artifactId>

-      <version>0.0-20170809-b9c14c6b</version>

-    </dependency>

-

-    <dependency>

-      <groupId>org.apache.royale.compiler</groupId>

-      <artifactId>compiler-test-utils</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

-      <scope>test</scope>

-    </dependency>

-    <dependency>

-      <groupId>junit</groupId>

-      <artifactId>junit</artifactId>

-      <version>4.10</version>

-      <scope>test</scope>

-    </dependency>

-    <dependency>

-      <groupId>org.apache.royale.compiler</groupId>

-      <artifactId>compiler-externc</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

-      <type>test-jar</type>

-      <scope>test</scope>

-    </dependency>

-    

-  </dependencies>

-

-<properties /></project>

+<?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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.royale.compiler</groupId>
+    <artifactId>royale-compiler-parent</artifactId>
+    <version>0.9.8-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>compiler-jx</artifactId>
+  <version>0.9.8-SNAPSHOT</version>
+
+  <name>Apache Royale: Compiler: Compiler-JX</name>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Sealed>false</Sealed>
+              <!-- These paths are all defined the way the layout will be in the distribution -->
+              <Class-Path>commons-io.jar guava.jar ../../lib/external/antlr.jar  ../../lib/external/antlr-runtime.jar ../../lib/external/commons-lang.jar ../../lib/external/closure-compiler.jar ../../lib/compiler.jar ../../lib/compiler-common.jar</Class-Path>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-resources-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>copy-externc-resources</id>
+            <phase>process-test-resources</phase>
+            <goals>
+              <goal>copy-resources</goal>
+            </goals>
+          <configuration>
+          <outputDirectory>${basedir}/../compiler-externc/target</outputDirectory>
+            <resources>
+              <resource>
+                <directory>${basedir}/../compiler-externc/src/test/config</directory>
+              </resource>
+            </resources>
+          </configuration>
+        </execution>
+        <execution>
+          <id>copy-custom-resources</id>
+          <phase>process-test-resources</phase>
+          <goals>
+            <goal>copy-resources</goal>
+          </goals>
+          <configuration>
+            <outputDirectory>${basedir}/target</outputDirectory>
+            <resources>
+              <resource>
+                <directory>${basedir}/src/test/config</directory>
+              </resource>
+            </resources>
+          </configuration>
+        </execution>
+      </executions>
+    </plugin>
+      <!-- Make the surefire execute all unit-tests -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <includes>
+            <include>org/**/Test*.java</include>
+          </includes>
+          <excludes>
+            <exclude>**/TestRoyaleFile.java</exclude>
+            <exclude>**/TestRoyaleMXML*.java</exclude>
+            <exclude>**/TestSourceMapMXML*.java</exclude>
+            <exclude>**/TestMXML*.java</exclude>
+            <exclude>**/TestRoyaleClass.java</exclude>
+            <exclude>**/TestTypedefsCompile.java</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-failsafe-plugin</artifactId>
+        <configuration>
+          <includes>
+            <include>**/TestMXML*.java</include>
+          </includes>
+          <excludes>
+            <exclude>**/TestTypedefsCompile.java</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>exec-maven-plugin</artifactId>
+        <executions>
+          <execution>
+              <id>generate-test-js-typedefs</id>
+              <phase>test-compile</phase>
+              <goals>
+                  <goal>exec</goal>
+              </goals>
+              <configuration>
+                  <executable>java</executable>
+                  <arguments>
+                      <argument>-classpath</argument>
+                      <classpath />
+                      <arguments>org.apache.royale.compiler.clients.EXTERNC</arguments>
+                      <argument>-load-config+=../compiler-externc/src/test/config/externc-config.xml</argument>
+                  </arguments>
+              </configuration>
+          </execution>
+          <execution>
+              <id>generate-test-js-swc</id>
+              <phase>test-compile</phase>
+              <goals>
+                  <goal>exec</goal>
+              </goals>
+              <configuration>
+                  <executable>java</executable>
+                  <arguments>
+                      <argument>-classpath</argument>
+                      <classpath />
+                      <arguments>org.apache.royale.compiler.clients.COMPJSC</arguments>
+                      <argument>-targets=SWF</argument>
+                      <argument>-load-config+=../compiler-externc/target/compile-as-config.xml</argument>
+                      <argument>-output=../compiler-externc/target/js.swc</argument>
+                  </arguments>
+              </configuration>
+          </execution>
+          <execution>
+              <id>generate-test-custom-swc</id>
+              <phase>test-compile</phase>
+              <goals>
+                  <goal>exec</goal>
+              </goals>
+              <configuration>
+                  <executable>java</executable>
+                  <arguments>
+                      <argument>-classpath</argument>
+                      <classpath />
+                      <arguments>org.apache.royale.compiler.clients.COMPJSC</arguments>
+                      <argument>-load-config+=target/compile-js-config.xml</argument>
+                      <argument>-output=target/custom.swc</argument>
+                  </arguments>
+              </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.royale.compiler</groupId>
+      <artifactId>compiler-common</artifactId>
+      <version>0.9.8-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.royale.compiler</groupId>
+      <artifactId>compiler-externc</artifactId>
+      <version>0.9.8-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.royale.compiler</groupId>
+      <artifactId>compiler-playerglobalc</artifactId>
+      <version>0.9.8-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.royale.compiler</groupId>
+      <artifactId>compiler</artifactId>
+      <version>0.9.8-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</artifactId>
+      <version>1.11</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+      <version>2.6</version>
+    </dependency>
+
+    <dependency>
+      <groupId>args4j</groupId>
+      <artifactId>args4j</artifactId>
+      <version>2.33</version>
+    </dependency>
+    <dependency>
+      <groupId>com.google.javascript</groupId>
+      <artifactId>closure-compiler</artifactId>
+      <version>v20181210</version>
+    </dependency>
+    <dependency>
+      <groupId>org.clojure</groupId>
+      <artifactId>google-closure-library</artifactId>
+      <version>0.0-20170809-b9c14c6b</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.royale.compiler</groupId>
+      <artifactId>compiler-test-utils</artifactId>
+      <version>0.9.8-SNAPSHOT</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.10</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.royale.compiler</groupId>
+      <artifactId>compiler-externc</artifactId>
+      <version>0.9.8-SNAPSHOT</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    
+  </dependencies>
+
+<properties /></project>
diff --git a/compiler-playerglobalc/pom.xml b/compiler-playerglobalc/pom.xml
index 6955612..d390a8b 100644
--- a/compiler-playerglobalc/pom.xml
+++ b/compiler-playerglobalc/pom.xml
@@ -1,77 +1,79 @@
-<?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.

-

---><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/xsd/maven-4.0.0.xsd">

-  <modelVersion>4.0.0</modelVersion>

-

-  <parent>

-    <groupId>org.apache.royale.compiler</groupId>

-    <artifactId>royale-compiler-parent</artifactId>

-    <version>0.9.9-SNAPSHOT</version>

-  </parent>

-

-  <artifactId>compiler-playerglobalc</artifactId>

-  <version>0.9.9-SNAPSHOT</version>

-  

-  <build>

-    <plugins>

-        <plugin>

-            <groupId>org.apache.maven.plugins</groupId>

-            <artifactId>maven-jar-plugin</artifactId>

-            <executions>

-                <execution>

-                    <id>default-jar</id>

-                    <configuration>

-                        <archive>

-                            <manifestEntries>

-                                <!-- These paths are all defined the way the layout will be in the distribution -->

-                                <Class-Path>../../compiler/lib/external/commons-io.jar ../../lib/external/commons-io.jar ../../compiler-jx/lib/dom4j.jar dom4j.jar ../../compiler/lib/compiler-common.jar ../../lib/compiler-common.jar ../../compiler/lib/external/flex-tool-api.jar ../../lib/external/flex-tool-api.jar</Class-Path>

-                            </manifestEntries>

-                        </archive>

-                    </configuration>

-                </execution>

-                <execution>

-                    <id>default-test-jar</id>

-                    <goals>

-                        <goal>test-jar</goal>

-                    </goals>

-                </execution>

-            </executions>

-        </plugin>

-    </plugins>

-  </build>

-

-  <dependencies>

-    <dependency>

-      <groupId>org.apache.royale.compiler</groupId>

-      <artifactId>compiler-common</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

-    </dependency>

-    <dependency>

-      <groupId>commons-io</groupId>

-      <artifactId>commons-io</artifactId>

-      <version>2.4</version>

-    </dependency>

-    <dependency>

-      <groupId>dom4j</groupId>

-      <artifactId>dom4j</artifactId>

-      <version>1.6.1</version>

-    </dependency>

-  </dependencies>

-

-</project>

+<?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.
+
+--><project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+  xmlns="http://maven.apache.org/POM/4.0.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.royale.compiler</groupId>
+    <artifactId>royale-compiler-parent</artifactId>
+    <version>0.9.8-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>compiler-playerglobalc</artifactId>
+  <version>0.9.8-SNAPSHOT</version>
+  
+  <build>
+    <plugins>
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jar-plugin</artifactId>
+            <executions>
+                <execution>
+                    <id>default-jar</id>
+                    <configuration>
+                        <archive>
+                            <manifestEntries>
+                                <!-- These paths are all defined the way the layout will be in the distribution -->
+                                <Class-Path>../../compiler/lib/external/commons-io.jar ../../lib/external/commons-io.jar ../../compiler-jx/lib/dom4j.jar dom4j.jar ../../compiler/lib/compiler-common.jar ../../lib/compiler-common.jar ../../compiler/lib/external/flex-tool-api.jar ../../lib/external/flex-tool-api.jar</Class-Path>
+                            </manifestEntries>
+                        </archive>
+                    </configuration>
+                </execution>
+                <execution>
+                    <id>default-test-jar</id>
+                    <goals>
+                        <goal>test-jar</goal>
+                    </goals>
+                </execution>
+            </executions>
+        </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.royale.compiler</groupId>
+      <artifactId>compiler-common</artifactId>
+      <version>0.9.8-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>2.4</version>
+    </dependency>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+      <version>1.6.1</version>
+    </dependency>
+  </dependencies>
+
+</project>
diff --git a/compiler-test-utils/pom.xml b/compiler-test-utils/pom.xml
index cb20c02..abf04f4 100644
--- a/compiler-test-utils/pom.xml
+++ b/compiler-test-utils/pom.xml
@@ -22,11 +22,11 @@
   <parent>

     <groupId>org.apache.royale.compiler</groupId>

     <artifactId>royale-compiler-parent</artifactId>

-    <version>0.9.9-SNAPSHOT</version>

+    <version>0.9.8-SNAPSHOT</version>

   </parent>

 

   <artifactId>compiler-test-utils</artifactId>

-  <version>0.9.9-SNAPSHOT</version>

+  <version>0.9.8-SNAPSHOT</version>

 

   <name>Apache Royale: Compiler: Test Utils</name>

   <description>

diff --git a/compiler/pom.xml b/compiler/pom.xml
index f4cc8f0..1fbaab1 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -22,11 +22,11 @@
   <parent>

     <groupId>org.apache.royale.compiler</groupId>

     <artifactId>royale-compiler-parent</artifactId>

-    <version>0.9.9-SNAPSHOT</version>

+    <version>0.9.8-SNAPSHOT</version>

   </parent>

 

   <artifactId>compiler</artifactId>

-  <version>0.9.9-SNAPSHOT</version>

+  <version>0.9.8-SNAPSHOT</version>

 

   <name>Apache Royale: Compiler: Compiler</name>

   <description>The Apache Royale Compiler</description>

@@ -581,7 +581,7 @@
     <dependency>

       <groupId>org.apache.royale.compiler</groupId>

       <artifactId>compiler-common</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

+      <version>0.9.8-SNAPSHOT</version>

     </dependency>

     <dependency>

       <groupId>org.apache.flex</groupId>

@@ -633,13 +633,13 @@
     <dependency>

       <groupId>org.apache.royale.compiler</groupId>

       <artifactId>compiler-test-utils</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

+      <version>0.9.8-SNAPSHOT</version>

       <scope>test</scope>

     </dependency>

     <dependency>

       <groupId>org.apache.royale.compiler</groupId>

       <artifactId>compiler-externc</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

+      <version>0.9.8-SNAPSHOT</version>

     </dependency>

     <dependency>

       <groupId>junit</groupId>

diff --git a/debugger/pom.xml b/debugger/pom.xml
index b327f41..b3ae60b 100644
--- a/debugger/pom.xml
+++ b/debugger/pom.xml
@@ -22,11 +22,11 @@
   <parent>

     <groupId>org.apache.royale.compiler</groupId>

     <artifactId>royale-compiler-parent</artifactId>

-    <version>0.9.9-SNAPSHOT</version>

+    <version>0.9.8-SNAPSHOT</version>

   </parent>

 

   <artifactId>debugger</artifactId>

-  <version>0.9.9-SNAPSHOT</version>

+  <version>0.9.8-SNAPSHOT</version>

 

   <name>Apache Royale: Compiler: Debugger</name>

 

@@ -95,12 +95,12 @@
     <dependency>

       <groupId>org.apache.royale.compiler</groupId>

       <artifactId>compiler</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

+      <version>0.9.8-SNAPSHOT</version>

     </dependency>

     <dependency>

       <groupId>org.apache.royale.compiler</groupId>

       <artifactId>swfutils</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

+      <version>0.9.8-SNAPSHOT</version>

     </dependency>

     <dependency>

       <groupId>commons-lang</groupId>

diff --git a/flex-compiler-oem/pom.xml b/flex-compiler-oem/pom.xml
index fe4b32e..a9b69f9 100644
--- a/flex-compiler-oem/pom.xml
+++ b/flex-compiler-oem/pom.xml
@@ -22,11 +22,11 @@
   <parent>

     <groupId>org.apache.royale.compiler</groupId>

     <artifactId>royale-compiler-parent</artifactId>

-    <version>0.9.9-SNAPSHOT</version>

+    <version>0.9.8-SNAPSHOT</version>

   </parent>

 

   <artifactId>flex-compiler-oem</artifactId>

-  <version>0.9.9-SNAPSHOT</version>

+  <version>0.9.8-SNAPSHOT</version>

 

   <name>Apache Royale: Compiler: OEM Layer</name>

 

@@ -54,17 +54,17 @@
     <dependency>

       <groupId>org.apache.royale.compiler</groupId>

       <artifactId>compiler</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

+      <version>0.9.8-SNAPSHOT</version>

     </dependency>

     <dependency>

       <groupId>org.apache.royale.compiler</groupId>

       <artifactId>compiler-jx</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

+      <version>0.9.8-SNAPSHOT</version>

     </dependency>

     <dependency>

       <groupId>org.apache.royale.compiler</groupId>

       <artifactId>swfutils</artifactId>

-      <version>0.9.9-SNAPSHOT</version>

+      <version>0.9.8-SNAPSHOT</version>

     </dependency>

   </dependencies>

 

diff --git a/pom.xml b/pom.xml
index e2ab25a..c1c641d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@
 

   <groupId>org.apache.royale.compiler</groupId>

   <artifactId>royale-compiler-parent</artifactId>

-  <version>0.9.9-SNAPSHOT</version>

+  <version>0.9.8-SNAPSHOT</version>

   <packaging>pom</packaging>

 

   <name>Apache Royale: Compiler: Parent</name>

@@ -64,7 +64,7 @@
     <maven.wagon.http.retryHandler.class>standard</maven.wagon.http.retryHandler.class>

     <!-- Try at most 6 times to deploy every artifact -->

     <maven.wagon.http.retryHandler.count>6</maven.wagon.http.retryHandler.count>

-    <project.build.outputTimestamp>2021-04-04T11:26:39Z</project.build.outputTimestamp>

+    <project.build.outputTimestamp>2020-11-26T15:20:12Z</project.build.outputTimestamp>

   </properties>

 

   <!-- Only configure the site distribution as the rest is handled by the apache parent -->

diff --git a/royale-ant-tasks/pom.xml b/royale-ant-tasks/pom.xml
index 0d5afc8..6a4d17d 100644
--- a/royale-ant-tasks/pom.xml
+++ b/royale-ant-tasks/pom.xml
@@ -22,11 +22,11 @@
   <parent>

     <groupId>org.apache.royale.compiler</groupId>

     <artifactId>royale-compiler-parent</artifactId>

-    <version>0.9.9-SNAPSHOT</version>

+    <version>0.9.8-SNAPSHOT</version>

   </parent>

 

   <artifactId>royale-ant-tasks</artifactId>

-  <version>0.9.9-SNAPSHOT</version>

+  <version>0.9.8-SNAPSHOT</version>

 

   <name>Apache Royale: Royale Ant Tasks</name>

 

diff --git a/royale-maven-plugin/pom.xml b/royale-maven-plugin/pom.xml
index 1fa7d0d..8b56c31 100644
--- a/royale-maven-plugin/pom.xml
+++ b/royale-maven-plugin/pom.xml
@@ -22,11 +22,11 @@
   <parent>

     <groupId>org.apache.royale.compiler</groupId>

     <artifactId>royale-compiler-parent</artifactId>

-    <version>0.9.9-SNAPSHOT</version>

+    <version>0.9.8-SNAPSHOT</version>

   </parent>

 

   <artifactId>royale-maven-plugin</artifactId>

-  <version>0.9.9-SNAPSHOT</version>

+  <version>0.9.8-SNAPSHOT</version>

   <packaging>maven-plugin</packaging>

 

   <name>Apache Royale: Royale Maven Plugin</name>

diff --git a/royaleunit-ant-tasks/pom.xml b/royaleunit-ant-tasks/pom.xml
index 1092855..102298e 100644
--- a/royaleunit-ant-tasks/pom.xml
+++ b/royaleunit-ant-tasks/pom.xml
@@ -22,11 +22,11 @@
   <parent>

     <groupId>org.apache.royale.compiler</groupId>

     <artifactId>royale-compiler-parent</artifactId>

-    <version>0.9.9-SNAPSHOT</version>

+    <version>0.9.8-SNAPSHOT</version>

   </parent>

 

   <artifactId>royaleunit-ant-tasks</artifactId>

-  <version>0.9.9-SNAPSHOT</version>

+  <version>0.9.8-SNAPSHOT</version>

 

   <name>Apache Royale: RoyaleUnit Ant Tasks</name>

 

diff --git a/swfutils/pom.xml b/swfutils/pom.xml
index 70d0f7a..7e3b4d7 100644
--- a/swfutils/pom.xml
+++ b/swfutils/pom.xml
@@ -22,11 +22,11 @@
   <parent>

     <groupId>org.apache.royale.compiler</groupId>

     <artifactId>royale-compiler-parent</artifactId>

-    <version>0.9.9-SNAPSHOT</version>

+    <version>0.9.8-SNAPSHOT</version>

   </parent>

 

   <artifactId>swfutils</artifactId>

-  <version>0.9.9-SNAPSHOT</version>

+  <version>0.9.8-SNAPSHOT</version>

 

   <name>Apache Royale: Compiler: SWFUtils</name>

   <description>The Apache Royale Compiler SWF Utility classes</description>