js-config, node-config, and jquery-config probably shouldn't contain any namespaces. They're not meant to use framework components.
- Josh On Jul 15, 2016 12:04 AM, "Christofer Dutz" <christofer.d...@c-ware.de> wrote: > I did notice that all configs except the flex and air contained no > namespaces at all ... is this intentional? > > > Chris > > ________________________________ > Von: Josh Tynjala <joshtynj...@gmail.com> > Gesendet: Donnerstag, 14. Juli 2016 23:22:56 > An: dev@flex.apache.org > Betreff: Re: git commit: [flex-asjs] [refs/heads/develop] - > js-config-template (plus jquery and node): added missing reference to > Core.swc, which is required for org.apache.flex.utils.Language > > So js-config.xml needs to be updated to include Core.swc in the > library-path so that the org.apache.flex.utils.Language class is available. > However, it looks like the build process for Core.swc may actually be > referencing js-config.xml, so it ends up expecting itself as a > dependency... Any ideas on how to fix that? > > - Josh > > On Thu, Jul 14, 2016 at 1:26 PM, <joshtynj...@apache.org> wrote: > > > Repository: flex-asjs > > Updated Branches: > > refs/heads/develop 91942c618 -> bf65776b6 > > > > > > js-config-template (plus jquery and node): added missing reference to > > Core.swc, which is required for org.apache.flex.utils.Language > > > > > > Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo > > Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/bf65776b > > Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/bf65776b > > Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/bf65776b > > > > Branch: refs/heads/develop > > Commit: bf65776b6bc12dd90d30211301c560ae322baefb > > Parents: 91942c6 > > Author: Josh Tynjala <joshtynj...@apache.org> > > Authored: Thu Jul 14 13:26:51 2016 -0700 > > Committer: Josh Tynjala <joshtynj...@apache.org> > > Committed: Thu Jul 14 13:26:51 2016 -0700 > > > > ---------------------------------------------------------------------- > > frameworks/jquery-config-template.xml | 1 + > > frameworks/js-config-template.xml | 1 + > > frameworks/node-config-template.xml | 1 + > > 3 files changed, 3 insertions(+) > > ---------------------------------------------------------------------- > > > > > > > > > http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/bf65776b/frameworks/jquery-config-template.xml > > ---------------------------------------------------------------------- > > diff --git a/frameworks/jquery-config-template.xml > > b/frameworks/jquery-config-template.xml > > index aee0f53..97b74fd 100644 > > --- a/frameworks/jquery-config-template.xml > > +++ b/frameworks/jquery-config-template.xml > > @@ -71,6 +71,7 @@ > > > > <!-- List of SWC files or directories that contain SWC files. --> > > <library-path> > > + <path-element>libs/Core.swc</path-element> > > <path-element>../js/libs/GCL.swc</path-element> > > </library-path> > > > > > > > > > http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/bf65776b/frameworks/js-config-template.xml > > ---------------------------------------------------------------------- > > diff --git a/frameworks/js-config-template.xml > > b/frameworks/js-config-template.xml > > index cc3568f..5e1944e 100644 > > --- a/frameworks/js-config-template.xml > > +++ b/frameworks/js-config-template.xml > > @@ -70,6 +70,7 @@ > > > > <!-- List of SWC files or directories that contain SWC files. --> > > <library-path> > > + <path-element>libs/Core.swc</path-element> > > <path-element>../js/libs/GCL.swc</path-element> > > </library-path> > > > > > > > > > http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/bf65776b/frameworks/node-config-template.xml > > ---------------------------------------------------------------------- > > diff --git a/frameworks/node-config-template.xml > > b/frameworks/node-config-template.xml > > index 89263db..d2157e0 100644 > > --- a/frameworks/node-config-template.xml > > +++ b/frameworks/node-config-template.xml > > @@ -71,6 +71,7 @@ > > > > <!-- List of SWC files or directories that contain SWC files. --> > > <library-path> > > + <path-element>libs/Core.swc</path-element> > > <path-element>../js/libs/GCL.swc</path-element> > > </library-path> > > > > > > >