Re: Everybody (else) seems to hate nb-javac!

2020-12-18 Thread Jan Lahoda
On Fri, Dec 18, 2020 at 11:59 PM Scott Palmer wrote: > > > On Dec 18, 2020, at 3:36 PM, Jaroslav Tulach > wrote: > > > > Hi. > > First and foremost. I admire the work Arvind & his team are doing while > > maintaining [nb-javac](http://github.com/oracle/nb-javac). I am sure > they > > don't hate

Re: Question about development direction.

2020-12-18 Thread Tristan Lewis
Hey, I'm interested in knowing more about the CND module. I had a look at the cnd branch, decompiled the missing dependencies and got it building locally via the ant command (haven't tried to use it yet, that would be next to try) Is that the right branch to be looking at? And should I be getti

Re: Everybody (else) seems to hate nb-javac!

2020-12-18 Thread Scott Palmer
> On Dec 18, 2020, at 3:36 PM, Jaroslav Tulach > wrote: > > Hi. > First and foremost. I admire the work Arvind & his team are doing while > maintaining [nb-javac](http://github.com/oracle/nb-javac). I am sure they > don't hate it. Neither do I, but let's talk about the rest of us who have > so

Everybody (else) seems to hate nb-javac!

2020-12-18 Thread Jaroslav Tulach
Hi. First and foremost. I admire the work Arvind & his team are doing while maintaining [nb-javac](http://github.com/oracle/nb-javac). I am sure they don't hate it. Neither do I, but let's talk about the rest of us who have some concerns... > Our love and hate relationship to nb-javac needs to be

Re: [POLL] Gradle Task Navigator with Favorite Task UI

2020-12-18 Thread Sven Reimers
Version 2 Thanks -Sven Rami Swailem schrieb am Di., 15. Dez. 2020, 19:20: > Version 2 > > On 2020/12/15 04:29:42 Laszlo Kishalmi wrote: > > Well, I've created two UI implementation of displaying Favorite Task in > > Gradle Navigator. > > > > The implementations: > > > > > https://issues.apache

Re: Abominable Groovy scanning performance

2020-12-18 Thread Sven Reimers
Hi all, the groovy parsing uses the official groovy parser, at the moment 2.5.x... I would assume that switching to 3.x would speed up the parsing due to the new parser in groovy 3.. I have a working prototype of using 3.x but a couple of tests are still failing... What are your tests based on?

Re: Building NetBeans with Gradle

2020-12-18 Thread Laszlo Kishalmi
I wish, I knew what's wrong with the OSGI Bootstrap. Let me come up with a presentable case, I've just started to rebase my branch on NetBeans 12.2. Generally the compilation of the platform packages works When it comes to testing (only unittests this time). As long as the tests does not invol

Re: Embedded Derby DB and Platform Application

2020-12-18 Thread Peter Blemel
FYI I see there's a tip in the tutorial for exactly this case : One drawback of the approach above is that now our CustomerEditorTopComponent only works if it can find a TopComponent with the ID "CustomerViewerTopComponent". Either this needs to be explicitly documented, so that developers of a

Re: Embedded Derby DB and Platform Application

2020-12-18 Thread Peter Blemel
Just a quick guess without looking at your code ... The stack trace java.lang.IllegalStateException: Cannot find TopComponent with > > preferredID CustomerViewerTopComponent, see IDE log for more details. would seem to imply that you may have renamed your top component (or written a new one), b

Re: Building NetBeans with Gradle

2020-12-18 Thread Jaroslav Tulach
> The Big Bad thing needs to be fixed is the OSGI bootstrap. So What's wrong with OSGi bootstrap? Gradle is about building the NetBeans bits, right? There is no invocation of OSGi when building NetBeans, I think. -jt

Re: NetBeans 12.x shows error badges on imports

2020-12-18 Thread Humphrey Clerx
I checked the messages.log of NetBeans 12.2 and found the following kind of entries: INFO [org.netbeans.api.java.source.ElementHandle]: Resolved type is null for kind = CLASS INFO [org.netbeans.api.java.source.ElementHandle]: Cannot resolve: ElementHandle[kind=CLASS; sigs=org.nato.unclassified.mic

Re: Abominable Groovy scanning performance

2020-12-18 Thread Geertjan Wielenga
This is all really great news, aside from the Groovy part. I don't believe the parsing of Groovy files has been touched in the last 10 years or so, anything you could do to work on that would be much appreciated by many. Gj On Fri, Dec 18, 2020 at 8:37 AM Tim Boudreau wrote: > Hi, all, > > So,