Re: A little Gradle problem

2021-03-15 Thread Thomas Kellerer
Mark A. Flacy schrieb am 16.03.2021 um 02:44: > Greetings, > > The plugins you are using will impact what is going on with Gradle. You > should tell us about them as well. > > I know there is at least one protobuf plugin that NetBeans is not currently > able to handle. (Well, 12.1 couldn't; I have

Re: A little Gradle problem

2021-03-15 Thread Mark A. Flacy
Greetings, The plugins you are using will impact what is going on with Gradle. You should tell us about them as well. I know there is at least one protobuf plugin that NetBeans is not currently able to handle. (Well, 12.1 couldn't; I haven't checked against 12.3.) -- Mark A. Flacy mfl...@ver

Netbeans 12.2. Wacked. SOLVED !!

2021-03-15 Thread jasiii
Just to share what I finally got to work and why Netbeans 12.2 when I opened any dialog window the application would just freeze and flicker … Could not figure out the what or why when any secondary window was opened the the application went into frozen mode. And just to share my approach to f

How to get ClonableEditor from DataEditorSupport

2021-03-15 Thread Sam K. Raju
Hi, I have extended DataEditorSupport for a custom file type and created a custom editor extending ClonableEditor. When I have multiple editors open, how to get the active editor (ClonableEditor) from my DataEditorSupport instance? The reason I am asking this is that when I try to call getEditor

Re: A little Gradle problem

2021-03-15 Thread Thomas Kellerer
Mark A. Flacy schrieb am 15.03.2021 um 10:32: > Which version of Gradle are you using? What does the parent project's > build.gradle look like? > I am using Gradle 6.7 The sub module only contains a build.gradle with the following dependencies: dependencies { // Spring impl

Re: Java filing problem on Netbeans 12.2: File created but no data in it

2021-03-15 Thread Mark A. Flacy
Greetings, This is a generic Java problem, not a NetBeans issue. Try */FileWriter fileWritter = new FileWriter(f1, true); /*instead. -- Mark A. Flacy mfl...@verizon.net On Friday, March 12, 2021 7:01:44 PM CDT Zulfi Khan wrote: > Hi, > Subject: File created but message not stored > Thanks Mark

Re: A little Gradle problem

2021-03-15 Thread Mark A. Flacy
Which version of Gradle are you using? What does the parent project's build.gradle look like? -- Mark A. Flacy mfl...@verizon.net On Monday, March 15, 2021 4:24:14 AM CDT Thomas Kellerer wrote: > Andy Turner schrieb am 12.03.2021 um 20:05: > > The line: > > testImplementation > > ("org.spr

Re: A little Gradle problem

2021-03-15 Thread Thomas Kellerer
Andy Turner schrieb am 12.03.2021 um 20:05: > The line: >     testImplementation ("org.springframework.boot:spring-boot-starter-test") > > is unusual, and the one you add: >     testImplementation > ("org.springframework.boot:spring-boot-starter-test:${springBootVersion}") > > is more like the o