Re: Build Warning: Cannot translate according to ...

2018-08-31 Thread Gayan Madhusanka


On Fri, Aug 31, 2018 at 1:30 AM Geertjan Wielenga
 wrote:

> Makes sense.
>
> Gj
>
> On Thursday, August 30, 2018, georgetrou...@gmail.com <
> georgetrou...@gmail.com> wrote:
>
> >
> >
> > On 2018/08/27 23:33:09, georgetrou...@gmail.com  >
> > wrote:
> > > Hi everyone,
> > >
> > > I'm developing a custom Module for the MPLAB X IDE v5.00 using the
> MPLAB
> > X SDK as well as NetBeans API's documentation. I'm developing it in
> > NetBeans 8.2, and I've added MPLAB X as a NetBeans Platform such that
> > whenever I run my module, an instance of MPLAB is opened for testing my
> > module.
> > >
> > > I've been trying to eliminate all build warnings, yet there is one that
> > I cannot seem to eliminate. I've broken it down over several lines to
> make
> > it easier to read:
> > >
> > > Cannot translate according to
> > > [
> > > file:/C:/Microchip/MPLABX/v5.00/mplab_platform/ide/config/
> > ModuleAutoDeps/org-netbeans-modules-projectapi.xml,
> > > file:/C:/Microchip/MPLABX/v5.00/mplab_platform/ide/config/
> > ModuleAutoDeps/org-netbeans-modules-projectuiapi.xml,
> > > file:/C:/Microchip/MPLABX/v5.00/mplab_platform/platform/
> > config/ModuleAutoDeps/org-openide-filesystems.xml,
> > > file:/C:/Microchip/MPLABX/v5.00/mplab_platform/platform/
> > config/ModuleAutoDeps/org-openide-util.xml
> > > ]
> > > because could not find none of [org.netbeans.core.startup.base]
> > >
> > > I've downloaded the source code for NetBeans 8.2 from the official
> repos
> > to trace the source of the warning, and I've traced its origin to line
> 883
> > of org.netbeans.nbbuild.ParseProjectXml.java.
> > >
> > > From my limited understanding from reading the source, it seems that
> > NetBeans is trying to locate certain "hard-coded" modules from the target
> > NetBeans Platform bundle directories (the mplab_platform in my
> situation),
> > and the XML file corresponding to the specific module
> > (org.netbeans.core.startup.base) does not exist in my MPLAB installation
> > directory.
> > >
> > > My question is the following: Is this warning significant? I've been
> > trying to understand what the implications of this warning are, and I
> would
> > rather not just ignore this warning unless I have a solid understanding
> of
> > its existence in my build output.
> > >
> > > I understand that this is perhaps an unusual issue. Thank you to
> > everyone in advance for taking the time to respond
> > >
> > > -
> > > To unsubscribe, e-mail: dev-unsubscr...@netbeans.incubator.apache.org
> > > For additional commands, e-mail:
> dev-h...@netbeans.incubator.apache.org
> > >
> > > For further information about the NetBeans mailing lists, visit:
> > > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> > >
> > >
> > >
> > >
> >
> > I found a fix for this. Since MPLAB X v5.00 is based on Netbeans 8.0.1, I
> > discovered that if I use Netbeans 8.0.1 to compile my module then the
> > warning I mentioned above goes away. This could be a bug (#178260 might
> be
> > related to this) since I'm compiling a module for an older "Netbeans"
> > platform when the org.netbeans.core.startup.base didn't exist.
> >
> > I guess I should have used Netbeans 8.0.1 all along
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@netbeans.incubator.apache.org
> > For additional commands, e-mail: dev-h...@netbeans.incubator.apache.org
> >
> > For further information about the NetBeans mailing lists, visit:
> > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> >
> >
> >
> >
>


-- 
*Best Regards*
*K W G Madhusanka*


Re: Build Warning: Cannot translate according to ...

2018-08-30 Thread Geertjan Wielenga
Makes sense.

Gj

On Thursday, August 30, 2018, georgetrou...@gmail.com <
georgetrou...@gmail.com> wrote:

>
>
> On 2018/08/27 23:33:09, georgetrou...@gmail.com 
> wrote:
> > Hi everyone,
> >
> > I'm developing a custom Module for the MPLAB X IDE v5.00 using the MPLAB
> X SDK as well as NetBeans API's documentation. I'm developing it in
> NetBeans 8.2, and I've added MPLAB X as a NetBeans Platform such that
> whenever I run my module, an instance of MPLAB is opened for testing my
> module.
> >
> > I've been trying to eliminate all build warnings, yet there is one that
> I cannot seem to eliminate. I've broken it down over several lines to make
> it easier to read:
> >
> > Cannot translate according to
> > [
> > file:/C:/Microchip/MPLABX/v5.00/mplab_platform/ide/config/
> ModuleAutoDeps/org-netbeans-modules-projectapi.xml,
> > file:/C:/Microchip/MPLABX/v5.00/mplab_platform/ide/config/
> ModuleAutoDeps/org-netbeans-modules-projectuiapi.xml,
> > file:/C:/Microchip/MPLABX/v5.00/mplab_platform/platform/
> config/ModuleAutoDeps/org-openide-filesystems.xml,
> > file:/C:/Microchip/MPLABX/v5.00/mplab_platform/platform/
> config/ModuleAutoDeps/org-openide-util.xml
> > ]
> > because could not find none of [org.netbeans.core.startup.base]
> >
> > I've downloaded the source code for NetBeans 8.2 from the official repos
> to trace the source of the warning, and I've traced its origin to line 883
> of org.netbeans.nbbuild.ParseProjectXml.java.
> >
> > From my limited understanding from reading the source, it seems that
> NetBeans is trying to locate certain "hard-coded" modules from the target
> NetBeans Platform bundle directories (the mplab_platform in my situation),
> and the XML file corresponding to the specific module
> (org.netbeans.core.startup.base) does not exist in my MPLAB installation
> directory.
> >
> > My question is the following: Is this warning significant? I've been
> trying to understand what the implications of this warning are, and I would
> rather not just ignore this warning unless I have a solid understanding of
> its existence in my build output.
> >
> > I understand that this is perhaps an unusual issue. Thank you to
> everyone in advance for taking the time to respond
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@netbeans.incubator.apache.org
> > For additional commands, e-mail: dev-h...@netbeans.incubator.apache.org
> >
> > For further information about the NetBeans mailing lists, visit:
> > https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> >
> >
> >
> >
>
> I found a fix for this. Since MPLAB X v5.00 is based on Netbeans 8.0.1, I
> discovered that if I use Netbeans 8.0.1 to compile my module then the
> warning I mentioned above goes away. This could be a bug (#178260 might be
> related to this) since I'm compiling a module for an older "Netbeans"
> platform when the org.netbeans.core.startup.base didn't exist.
>
> I guess I should have used Netbeans 8.0.1 all along
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@netbeans.incubator.apache.org
> For additional commands, e-mail: dev-h...@netbeans.incubator.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>
>
>


Re: Build Warning: Cannot translate according to ...

2018-08-30 Thread georgetroulis



On 2018/08/27 23:33:09, georgetrou...@gmail.com  
wrote: 
> Hi everyone,
> 
> I'm developing a custom Module for the MPLAB X IDE v5.00 using the MPLAB X 
> SDK as well as NetBeans API's documentation. I'm developing it in NetBeans 
> 8.2, and I've added MPLAB X as a NetBeans Platform such that whenever I run 
> my module, an instance of MPLAB is opened for testing my module.
> 
> I've been trying to eliminate all build warnings, yet there is one that I 
> cannot seem to eliminate. I've broken it down over several lines to make it 
> easier to read:
> 
> Cannot translate according to 
> [
> 
> file:/C:/Microchip/MPLABX/v5.00/mplab_platform/ide/config/ModuleAutoDeps/org-netbeans-modules-projectapi.xml,
> 
> file:/C:/Microchip/MPLABX/v5.00/mplab_platform/ide/config/ModuleAutoDeps/org-netbeans-modules-projectuiapi.xml,
> 
> file:/C:/Microchip/MPLABX/v5.00/mplab_platform/platform/config/ModuleAutoDeps/org-openide-filesystems.xml,
> 
> file:/C:/Microchip/MPLABX/v5.00/mplab_platform/platform/config/ModuleAutoDeps/org-openide-util.xml
> ]
> because could not find none of [org.netbeans.core.startup.base]
> 
> I've downloaded the source code for NetBeans 8.2 from the official repos to 
> trace the source of the warning, and I've traced its origin to line 883 of 
> org.netbeans.nbbuild.ParseProjectXml.java.
> 
> From my limited understanding from reading the source, it seems that NetBeans 
> is trying to locate certain "hard-coded" modules from the target NetBeans 
> Platform bundle directories (the mplab_platform in my situation), and the XML 
> file corresponding to the specific module (org.netbeans.core.startup.base) 
> does not exist in my MPLAB installation directory.
> 
> My question is the following: Is this warning significant? I've been trying 
> to understand what the implications of this warning are, and I would rather 
> not just ignore this warning unless I have a solid understanding of its 
> existence in my build output.
> 
> I understand that this is perhaps an unusual issue. Thank you to everyone in 
> advance for taking the time to respond
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@netbeans.incubator.apache.org
> For additional commands, e-mail: dev-h...@netbeans.incubator.apache.org
> 
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> 
> 
> 
> 

I found a fix for this. Since MPLAB X v5.00 is based on Netbeans 8.0.1, I 
discovered that if I use Netbeans 8.0.1 to compile my module then the warning I 
mentioned above goes away. This could be a bug (#178260 might be related to 
this) since I'm compiling a module for an older "Netbeans" platform when the 
org.netbeans.core.startup.base didn't exist.

I guess I should have used Netbeans 8.0.1 all along

-
To unsubscribe, e-mail: dev-unsubscr...@netbeans.incubator.apache.org
For additional commands, e-mail: dev-h...@netbeans.incubator.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists





Build Warning: Cannot translate according to ...

2018-08-27 Thread georgetroulis
Hi everyone,

I'm developing a custom Module for the MPLAB X IDE v5.00 using the MPLAB X SDK 
as well as NetBeans API's documentation. I'm developing it in NetBeans 8.2, and 
I've added MPLAB X as a NetBeans Platform such that whenever I run my module, 
an instance of MPLAB is opened for testing my module.

I've been trying to eliminate all build warnings, yet there is one that I 
cannot seem to eliminate. I've broken it down over several lines to make it 
easier to read:

Cannot translate according to 
[

file:/C:/Microchip/MPLABX/v5.00/mplab_platform/ide/config/ModuleAutoDeps/org-netbeans-modules-projectapi.xml,

file:/C:/Microchip/MPLABX/v5.00/mplab_platform/ide/config/ModuleAutoDeps/org-netbeans-modules-projectuiapi.xml,

file:/C:/Microchip/MPLABX/v5.00/mplab_platform/platform/config/ModuleAutoDeps/org-openide-filesystems.xml,

file:/C:/Microchip/MPLABX/v5.00/mplab_platform/platform/config/ModuleAutoDeps/org-openide-util.xml
]
because could not find none of [org.netbeans.core.startup.base]

I've downloaded the source code for NetBeans 8.2 from the official repos to 
trace the source of the warning, and I've traced its origin to line 883 of 
org.netbeans.nbbuild.ParseProjectXml.java.

>From my limited understanding from reading the source, it seems that NetBeans 
>is trying to locate certain "hard-coded" modules from the target NetBeans 
>Platform bundle directories (the mplab_platform in my situation), and the XML 
>file corresponding to the specific module (org.netbeans.core.startup.base) 
>does not exist in my MPLAB installation directory.

My question is the following: Is this warning significant? I've been trying to 
understand what the implications of this warning are, and I would rather not 
just ignore this warning unless I have a solid understanding of its existence 
in my build output.

I understand that this is perhaps an unusual issue. Thank you to everyone in 
advance for taking the time to respond

-
To unsubscribe, e-mail: dev-unsubscr...@netbeans.incubator.apache.org
For additional commands, e-mail: dev-h...@netbeans.incubator.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists