This is an automated email from the ASF dual-hosted git repository. gregdove pushed a commit to branch improvements/Language in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 87961c6eafd07b8f1fa1d8ec0f9745261373f3c4 Author: greg-dove <[email protected]> AuthorDate: Thu May 23 18:31:56 2019 +1200 tweaks to build settings to use new line separations support in the additionalCompilerOptions --- examples/royale/HelloWorld/pom.xml | 5 +++++ frameworks/projects/Core/pom.xml | 9 ++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/examples/royale/HelloWorld/pom.xml b/examples/royale/HelloWorld/pom.xml index 4d73772..95be5cb 100644 --- a/examples/royale/HelloWorld/pom.xml +++ b/examples/royale/HelloWorld/pom.xml @@ -43,6 +43,11 @@ <debug>false</debug> <removeCirculars>true</removeCirculars> <mainClass>HelloWorld.mxml</mainClass> + <additionalCompilerOptions> + -js-complex-implicit-coercions=false; + -js-vector-index-checks=false; + -js-resolve-uncertain=false; + </additionalCompilerOptions> </configuration> </plugin> </plugins> diff --git a/frameworks/projects/Core/pom.xml b/frameworks/projects/Core/pom.xml index 2516af3..cb158df 100644 --- a/frameworks/projects/Core/pom.xml +++ b/frameworks/projects/Core/pom.xml @@ -53,7 +53,14 @@ <skipExtern>true</skipExtern> <skipAS>${royale.skipAS}</skipAS> <allowSubclassOverrides>true</allowSubclassOverrides> - <additionalCompilerOptions>-allow-abstract-classes;-js-default-initializers=false;-js-complex-implicit-coercions=false;-js-vector-index-checks=false;-js-resolve-uncertain=false;-source-map=true</additionalCompilerOptions> + <additionalCompilerOptions> + -allow-abstract-classes; + -js-default-initializers=false; + -js-complex-implicit-coercions=false; + -js-vector-index-checks=false; + -js-resolve-uncertain=false; + -source-map=true; + </additionalCompilerOptions> </configuration> <!-- As a test, add asdoc generation to the compile step --> <executions>
