Piotr, this fixes VSCode from reporting various errors. I'm getting FontIcon and other things, and I don't see the red errors anymore. Maybe this could be something related to the problems you saw in MoonShine?
Seems distribution is getting better at least for code intelligence in VSCode. Now I can develop with more info :) But don't know if is already a valid SDK for development since I compile with maven and my workflow is all maven driven And I still see things that doesn't seem ok: [*INFO*] Reading assembly descriptor: src/main/assembly/bin.xml [*WARNING*] The following patterns were never triggered in this artifact exclusion filter: o 'org.apache.royale.framework:*:swc:typedefs' [*INFO*] Building zip: /Users/carlosrovira/Dev/Royale/Source/royale-asjs/distribution/target/apache-royale-0.9.3-SNAPSHOT-bin.zip [*WARNING*] The following patterns were never triggered in this artifact exclusion filter: o 'org.apache.royale.framework:*:swc:typedefs' [*INFO*] Building tar: /Users/carlosrovira/Dev/Royale/Source/royale-asjs/distribution/target/apache-royale-0.9.3-SNAPSHOT-bin.tar.gz [*INFO*] [*INFO*] *--- *maven-assembly-plugin:2.6:single *(create-distribution-folder)* @ distribution* ---* [*INFO*] Reading assembly descriptor: src/main/assembly/dir.xml [*WARNING*] The following patterns were never triggered in this artifact exclusion filter: o 'org.apache.royale.framework:*:swc:typedefs' [*WARNING*] The following patterns were never triggered in this artifact inclusion filter: o 'com.adobe.air.compiler:adt:zip:win' [*WARNING*] NOTE: Your assembly specifies a dependencySet that matches multiple artifacts, but specifies a concrete output format. THIS MAY RESULT IN ONE OR MORE ARTIFACTS BEING OBSCURED! Output directory: 'null' Output filename mapping: 'frameworks' [*WARNING*] The following patterns were never triggered in this artifact inclusion filter: o 'com.adobe.air.runtime:adl:exe:win' [*WARNING*] The following patterns were never triggered in this artifact inclusion filter: o 'com.adobe.air.runtime:air:zip:win' [*WARNING*] The following patterns were never triggered in this artifact inclusion filter: o 'com.adobe.air.runtime:air-captive:zip:win' [*WARNING*] The following patterns were never triggered in this artifact inclusion filter: o 'com.adobe:fontkit' Don't know too much about how this could be affect distribution (or other things) ---------- Forwarded message --------- From: <[email protected]> Date: dom., 26 ago. 2018 a las 9:57 Subject: [royale-asjs] branch develop updated: fix some typos in distribution poms To: [email protected] <[email protected]> This is an automated email from the ASF dual-hosted git repository. carlosrovira pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git The following commit(s) were added to refs/heads/develop by this push: new 4b65c1e fix some typos in distribution poms 4b65c1e is described below commit 4b65c1e1434ad0758b41c3644e232bd2b0ec1e9e Author: Carlos Rovira <[email protected]> AuthorDate: Sun Aug 26 09:57:33 2018 +0200 fix some typos in distribution poms --- distribution/src/main/resources/frameworks/air-config.xml | 2 +- distribution/src/main/resources/frameworks/airmobile-config.xml | 2 +- distribution/src/main/resources/frameworks/createjs-config.xml | 6 +++--- distribution/src/main/resources/frameworks/flex-config.xml | 2 +- distribution/src/main/resources/frameworks/jquery-config.xml | 6 +++--- distribution/src/main/resources/frameworks/js-config.xml | 4 ++-- distribution/src/main/resources/frameworks/node-config.xml | 6 +++--- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/distribution/src/main/resources/frameworks/air-config.xml b/distribution/src/main/resources/frameworks/air-config.xml index b1e817a..a4e7e4c 100644 --- a/distribution/src/main/resources/frameworks/air-config.xml +++ b/distribution/src/main/resources/frameworks/air-config.xml @@ -75,7 +75,7 @@ <!-- List of SWC files or directories to compile against but to omit from --> <!-- linking. --> <js-external-library-path> - <path-element>../js/libs/royale.typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> </js-external-library-path> <!-- Turn on writing of generated/*.as files to disk. These files are generated by --> diff --git a/distribution/src/main/resources/frameworks/airmobile-config.xml b/distribution/src/main/resources/frameworks/airmobile-config.xml index cbead1d..f27b6aa 100644 --- a/distribution/src/main/resources/frameworks/airmobile-config.xml +++ b/distribution/src/main/resources/frameworks/airmobile-config.xml @@ -75,7 +75,7 @@ <!-- List of SWC files or directories to compile against but to omit from --> <!-- linking. --> <js-external-library-path> - <path-element>../js/libs/royale.typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> </js-external-library-path> <!-- Turn on writing of generated/*.as files to disk. These files are generated by --> diff --git a/distribution/src/main/resources/frameworks/createjs-config.xml b/distribution/src/main/resources/frameworks/createjs-config.xml index 6ce98e1..dbe95f2 100644 --- a/distribution/src/main/resources/frameworks/createjs-config.xml +++ b/distribution/src/main/resources/frameworks/createjs-config.xml @@ -58,8 +58,8 @@ <!-- List of SWC files or directories to compile against but to omit from --> <!-- linking. --> <external-library-path> - <path-element>../js/libs/royale.typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> - <path-element>../js/libs/royale.typedefs-createjs-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-createjs-${royale.typedefs.version}-typedefs.swc</path-element> </external-library-path> <!-- Turn on writing of generated/*.as files to disk. These files are generated by --> @@ -76,7 +76,7 @@ <!-- List of SWC files or directories that contain SWC files. --> <library-path> - <path-element>../js/libs/royale.typedefs-gcl-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-gcl-${royale.typedefs.version}-typedefs.swc</path-element> </library-path> <allow-subclass-overrides>true</allow-subclass-overrides> diff --git a/distribution/src/main/resources/frameworks/flex-config.xml b/distribution/src/main/resources/frameworks/flex-config.xml index 7854c17..14e0148 100644 --- a/distribution/src/main/resources/frameworks/flex-config.xml +++ b/distribution/src/main/resources/frameworks/flex-config.xml @@ -76,7 +76,7 @@ <!-- List of SWC files or directories to compile against but to omit from --> <!-- linking. --> <js-external-library-path> - <path-element>../js/libs/royale.typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> </js-external-library-path> <!-- Turn on writing of generated/*.as files to disk. These files are generated by --> diff --git a/distribution/src/main/resources/frameworks/jquery-config.xml b/distribution/src/main/resources/frameworks/jquery-config.xml index ba3cd21..53e8932 100644 --- a/distribution/src/main/resources/frameworks/jquery-config.xml +++ b/distribution/src/main/resources/frameworks/jquery-config.xml @@ -57,8 +57,8 @@ <!-- List of SWC files or directories to compile against but to omit from --> <!-- linking. --> <external-library-path> - <path-element>../js/libs/royale.typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> - <path-element>../js/libs/royale.typedefs-jquery-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-jquery-${royale.typedefs.version}-typedefs.swc</path-element> </external-library-path> <!-- Turn on writing of generated/*.as files to disk. These files are generated by --> @@ -76,7 +76,7 @@ <!-- List of SWC files or directories that contain SWC files. --> <library-path> <path-element>libs/Language-${version}.swc</path-element> - <path-element>../js/libs/royale.typedefs-gcl-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-gcl-${royale.typedefs.version}-typedefs.swc</path-element> </library-path> <allow-subclass-overrides>true</allow-subclass-overrides> diff --git a/distribution/src/main/resources/frameworks/js-config.xml b/distribution/src/main/resources/frameworks/js-config.xml index b895da9..8d198cc 100644 --- a/distribution/src/main/resources/frameworks/js-config.xml +++ b/distribution/src/main/resources/frameworks/js-config.xml @@ -57,7 +57,7 @@ <!-- List of SWC files or directories to compile against but to omit from --> <!-- linking. --> <external-library-path> - <path-element>../js/libs/royale.typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> </external-library-path> <!-- Turn on writing of generated/*.as files to disk. These files are generated by --> @@ -75,7 +75,7 @@ <!-- List of SWC files or directories that contain SWC files. --> <library-path> <path-element>libs/Language-${version}.swc</path-element> - <path-element>../js/libs/royale.typedefs-gcl-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-gcl-${royale.typedefs.version}-typedefs.swc</path-element> </library-path> <mxml> diff --git a/distribution/src/main/resources/frameworks/node-config.xml b/distribution/src/main/resources/frameworks/node-config.xml index 8446376..cfde4d4 100644 --- a/distribution/src/main/resources/frameworks/node-config.xml +++ b/distribution/src/main/resources/frameworks/node-config.xml @@ -57,8 +57,8 @@ <!-- List of SWC files or directories to compile against but to omit from --> <!-- linking. --> <external-library-path> - <path-element>../js/libs/royale.typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> - <path-element>../js/libs/royale.typedefs-node-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-js-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-node-${royale.typedefs.version}-typedefs.swc</path-element> </external-library-path> <!-- Turn on writing of generated/*.as files to disk. These files are generated by --> @@ -76,7 +76,7 @@ <!-- List of SWC files or directories that contain SWC files. --> <library-path> <path-element>libs/Language-${version}.swc</path-element> - <path-element>../js/libs/royale.typedefs-gcl-${royale.typedefs.version}-typedefs.swc</path-element> + <path-element>../js/libs/royale-typedefs-gcl-${royale.typedefs.version}-typedefs.swc</path-element> </library-path> <mxml> -- Carlos Rovira http://about.me/carlosrovira
