Re: NetBeans 19, Gradle 7.5 - "Run File" no longer working

2023-09-26 Thread Thomas Kellerer
ns/pull/6003> > > On Tue, Sep 26, 2023 at 5:54 AM Thomas Kellerer <mailto:sham...@gmx.net>> wrote: > > Hello, > > with NetBeans 19 and Gradle 7.5.1 "runFile" on a class with a main method > does not work any more: > > Caused by: > org.grad

NetBeans 19, Gradle 7.5 - "Run File" no longer working

2023-09-26 Thread Thomas Kellerer
Hello, with NetBeans 19 and Gradle 7.5.1 "runFile" on a class with a main method does not work any more: Caused by: org.gradle.api.internal.tasks.DefaultTaskContainer$TaskCreationException: Could not create task ':server:runSingle'. at

Re: Java Swing Support

2023-08-23 Thread Thomas Kellerer
Neil C Smith schrieb am 23.08.2023 um 21:55: > > > On Wed, 23 Aug 2023, 14:15 Plaza, Rob (JSC-CD111)[KBR Wyle Services, > LLC], wrote: > > My organization uses Netbeans 11.2. Recently we have noticed ... > > > Recently?! Why NetBeans 11.2? That's 4 years old and unsupported. > There have been

Gradle - "Resource only" project not shown correctly

2023-08-11 Thread Thomas Kellerer
We have a large multi-project Gradle setup that looks like this (output of "gradlew projects"): Root project 'the-project' +--- Project ':sub-project1' +--- Project ':node-js-project' |    \--- Project ':node-js-project:frontend' +--- Project ':commons' |    +--- Project ':commons:project1' |   

Re: Sorting imports during "Fix Imports"?

2023-08-01 Thread Thomas Kellerer
could > be potentially a bug, but it could be also intended that the organize imports > action is supposed to run after that. > > -mbien > > > On 01.08.23 10:13, Thomas Kellerer wrote: >> I have noticed that "Fix Imports" does not sort the imports. >> >

Sorting imports during "Fix Imports"?

2023-08-01 Thread Thomas Kellerer
I have noticed that "Fix Imports" does not sort the imports. I _think_ NetBeans did sort the imports at some point. But now it's always appended at the end - or somewhere near the end. E.g. I have existing imports like this: import javax.portlet.Portlet; import

Re: NetBeans - Gradle - jar

2023-07-06 Thread Thomas Kellerer
Arbol One schrieb am 06.07.2023 um 19:53: > I am trying to add a local jar file to my Gradle web project, but I don't > know how. Can any body help? You can use: implementation files("/path/to/your/library.jar") in your build.gradle

Re: Gradle modules and dependency scanning

2023-06-26 Thread Thomas Kellerer
and attach it to your JIRA ticket. >> >> >> There is not a single person on this mailing list who will get money for >> fixing your problem. (assuming you haven't set a bounty to do so).  You >> should make it simple to other humans to replicate your problem so that they

Re: Gradle modules and dependency scanning

2023-06-26 Thread Thomas Kellerer
ojects. > > > > Sent from my Galaxy > > > ---- Original message > From: Thomas Kellerer > Date: 6/26/23 01:17 (GMT-06:00) > To: users@netbeans.apache.org > Subject: Re: Gradle modules and dependency scanning > > Any ideas? > > Thomas Kellerer schr

Re: Gradle modules and dependency scanning

2023-06-26 Thread Thomas Kellerer
Any ideas? Thomas Kellerer schrieb am 13.06.2023 um 11:36: > I noticed one problem (in NetBeans 17 but it also happens with 18) with the > Gradle integration. > > I am working on a multi-module project (with 40 modules) using Gradle. > > Dependencies to classes in modules that

Gradle modules and dependency scanning

2023-06-13 Thread Thomas Kellerer
I noticed one problem (in NetBeans 17 but it also happens with 18) with the Gradle integration. I am working on a multi-module project (with 40 modules) using Gradle. Dependencies to classes in modules that are not currently open in the Projects window are not detected. NetBeans marks classes

How to open a Gradle sub-project that's a Node.Js application

2023-06-02 Thread Thomas Kellerer
Hello, I am working on a Gradle project with ~35 sub-modules. This works fine for the Java parts, but one of the sub-modules is the frontend using Node.js/Typescript/... When I open the top-level Gradle project I can see that frontend module in the projects window, only shows "Configurations"

Re: Broken link in the comments of netbeans.conf

2023-05-26 Thread Thomas Kellerer
content not migrated to new page. >> >> Will try to make a PR out of that. >> >> Eric >> >> -Message d'origine- >> De : Thomas Kellerer >> Envoyé : mercredi 24 mai 2023 13:55 >> À : NetBeans Users >> Objet : Broken link in the

Broken link in the comments of netbeans.conf

2023-05-24 Thread Thomas Kellerer
Hello, the netbeans.conf that is bundled with a release contains this explanation: # Default locations of userdir and cachedir: # (http://wiki.netbeans.org/FaqWhatIsUserdir) But that link is no longer working. It would be nice if that could be changed to a working page. Thomas

Re: Git branch display

2023-03-26 Thread Thomas Kellerer
Admin @ Goodun schrieb am 26.03.2023 um 11:36: It was a little hard to install since it didn't show up in the plugin dialog, ie it's no longer in any of the NB "portal" areas. What I had to do (thanks John for the private email) was download the code (I did it as a zip and then unpacked it) and

Re: Git branch display

2023-03-25 Thread Thomas Kellerer
better than I was asking for. However, where/how can I load it? It's not in the list of plugins NB shows me, even if I include the 8.2 portal (!), and the link on Chris' github page doesn't work. Mark On Sat, 2023-03-25 at 18:42 +0100, Thomas Kellerer wrote: Admin @ Goodun schrieb am 25.03.2023

Re: Git branch display

2023-03-25 Thread Thomas Kellerer
Admin @ Goodun schrieb am 25.03.2023 um 18:13: Is there a way of getting NetBeans to (always) display the git branch I currently am switched to? I am using this plugin https://github.com/Chris2011/nb-git-branch-in-statusbar it's a bit old, but still works with NetBeans 17

Re: Debugging web application on Tomcat

2023-03-25 Thread Thomas Kellerer
Thomas Tim de Vries schrieb am 25.03.2023 um 02:10: Probably, the problem with this, and maybe lombok, is that the IDE doesn't support it yet. It depends on who's doing what and how. Everything I make, works, mostly, ... , I continually make changes and test. Tim On 23/03/2023 11:

Re: Debugging web application on Tomcat

2023-03-23 Thread Thomas Kellerer
Greenberg, Gary schrieb am 13.03.2023 um 18:03: > Last year I have developed a Spring-Boot web application. > It was originally developed as a JAR but later converted to a WAR and > deployed to the Tomcat 9 on a production server. > > Last week, a bug was found and I need to fix it. > > Not to

Re: ENC: [Java] - Não dá opção de executar o programa no NetBeans

2023-03-09 Thread Thomas Kellerer
I had many problems with NetBeans and Gradle before NetBeans 16u1 Please try to upgrade your NetBeans version (e.g. to the current version 17) and try again. Clayton Calixto schrieb am 09.03.2023 um 19:39:

Download NetBeans API Javadocs?

2023-03-04 Thread Thomas Kellerer
Hello, I can download and attach the NetBeans RCP sources to my RCP application. But I can't find a way to download the JavaDocs. The "Manage NetBeans Platform" dialog only allows to add a ZIP file or directory, not a URL (as it it possible with the "Manage Java Platform" dialog) While

Re: Easier way to change Java platform for all modules of a Gradle project

2023-02-27 Thread Thomas Kellerer
Thomas Kellerer schrieb am 27.02.2023 um 08:38: > Hello, > > we have a Gradle project with about 40sub-projects. > > I am running NetBeans on Java 17, but the project still uses Java 11. > > However, it does not seem to be enough to switch the JDK on the main Gradle > pro

Easier way to change Java platform for all modules of a Gradle project

2023-02-26 Thread Thomas Kellerer
Hello, we have a Gradle project with about 40sub-projects. I am running NetBeans on Java 17, but the project still uses Java 11. However, it does not seem to be enough to switch the JDK on the main Gradle project. I need to change the JDK for each sub-project individually (using the project's

Re: Creating a new platform application: Maven or Ant?

2023-02-26 Thread Thomas Kellerer
Scott Palmer schrieb am 26.02.2023 um 15:47: I am trying to "migrate" an old NetBeans platform application that I created with NetBeans 8.0 about 10 years ago I decided to create a new NetBeans platform application from scratch as there is a lot of stuff I would do differently today.

Creating a new platform application: Maven or Ant?

2023-02-26 Thread Thomas Kellerer
Hello, I am trying to "migrate" an old NetBeans platform application that I created with NetBeans 8.0 about 10 years ago I decided to create a new NetBeans platform application from scratch as there is a lot of stuff I would do differently today. However, I am not sure if I should go for

Re: Database response with timestamp shows the String object not value

2023-02-24 Thread Thomas Kellerer
I think it's a problem in the Oracle JDBC driver. Most likely NetBeans uses the toString() method to display the column values. But oracle.sql.TIMESTAMPTZ does not implement toString() and thus it's this typical Java "toString()" representation. I think the only workaround is to retrieve it as

Re: [EXTERNAL] cannot find or load main class - still - again

2023-02-16 Thread Thomas Kellerer
-----

Re: cannot find or load main class - still - again

2023-02-16 Thread Thomas Kellerer
Are you using "Compile on Save"? I have had occasional problems with that. If you do use it, try to disable it and see if your problem goes away Thomas Christopher C. Lanz schrieb am 16.02.2023 um 14:27: > Hello, > >  I am getting this error (output below) about every 4^th  time I run a >

Re: NetBeans 16, Gradle 7.5 and "Run File"

2023-02-02 Thread Thomas Kellerer
t; On 2/1/23 23:35, Thomas Kellerer wrote: >> I use NetBeans 16 with Gradle 7.5.1, Java 11. >> >> When I run a class with a main method ("Run File") I get this exception in >> the output window: >> >> JAVA_HOME="C:\etc\open-jdk-11"

Re: NetBeans 16 running on JDK 17 + Gradle 7.5/Java 11 not working

2023-01-25 Thread Thomas Kellerer
László Kishalmi schrieb am 25.01.2023 um 21:26: > You are most probably seeing https://github.com/apache/netbeans/pull/5271 > It is fixed in NB17 which has the first rc available last week, > or as a workaround use an up-to date Java 17 (Java 17.0.6) wich has a dot in > it's version. Ah, great.

NetBeans 16 running on JDK 17 + Gradle 7.5/Java 11 not working

2023-01-25 Thread Thomas Kellerer
Hello, after the 16u1 path, I was able to work with my Gradle 7.5 again (thanks!) So far I have been running NetBeans on Java 11 (from adoptium if that matters) and had no problems. However, when I start NetBeans using Java 17 (but keep the Gradle projects at Java 11), NetBeans doesn't open

Re: NB16 - java.lang.RuntimeException: Uncompilable code

2022-12-15 Thread Thomas Kellerer
No, not a requirement. But there are some problems with Gradle (7.x) and NB 16 So is it an Ant based project or is using Maven? Sam Lalani schrieb am 15.12.2022 um 18:01: No, I am not using Gradle. Is that a requirement for NB16? -Original Message- From: Thomas Kellerer Sent

Re: NB16 - java.lang.RuntimeException: Uncompilable code

2022-12-15 Thread Thomas Kellerer
Are you using Gradle? Sam Lalani schrieb am 15.12.2022 um 15:21: > I am running NB16 in Windows 10.  I have a Java program that is giving this > error: > >Exception in thread "Thread-2" java.lang.RuntimeException: > Uncompilable code > > However, the same code in NB15 has no problems. >

Re: Project unloadable with Gradle 7.5.1 and NetBeans 16

2022-12-02 Thread Thomas Kellerer
her nicely (as they should also with JDK 11). > > Stan > > On 02/12/2022 07:10, Thomas Kellerer wrote: >> Hello, >> >> our project switch from Gradle 6.9.x to 7.5.1 and now it doesn't work with >> NetBeans 16 any more (the most recent "voting candidate"

Re: Project unloadable with Gradle 7.5.1 and NetBeans 16

2022-12-02 Thread Thomas Kellerer
Richard Grin schrieb am 02.12.2022 um 09:20: > I don't use Gradle. Lucky you. - To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org For additional commands, e-mail: users-h...@netbeans.apache.org For further

Re: Project unloadable with Gradle 7.5.1 and NetBeans 16

2022-12-01 Thread Thomas Kellerer
Thomas Kellerer schrieb am 02.12.2022 um 08:10: > our project switch from Gradle 6.9.x to 7.5.1 and now it doesn't work with > NetBeans 16 any more (the most recent "voting candidate") > Everything was working fine with Gradle 6.9.x even with the various NetBeans > 16 RC v

Project unloadable with Gradle 7.5.1 and NetBeans 16

2022-12-01 Thread Thomas Kellerer
Hello, our project switch from Gradle 6.9.x to 7.5.1 and now it doesn't work with NetBeans 16 any more (the most recent "voting candidate") Everything was working fine with Gradle 6.9.x even with the various NetBeans 16 RC versions In case this is important: the gradle plugin versions are

Disable "Method not used" hint for test classes

2022-11-14 Thread Thomas Kellerer
Hello, JUnit 5 recommends to remove the "public" modifier for classes and test methods. Without the public modifier for methods NetBeans 15 marks all test methods with "Method not used". I could not find any setting that controls this in "Options -> Editor -> Hints" Is there any option

Re: Remove breakpoint in JSP file

2022-09-15 Thread Thomas Kellerer
Mitch Claborn schrieb am 15.09.2022 um 17:58: NetBeans 12.6 Somehow I ended up with a breakpoint in a JSP file. How can I get rid of it? I've tried right click > Toggle Line Breakpoint but it does not remove the breakpoint. I can enable/disable it with a right click, not that that helps

Re: NetBeans has wird behaviors

2021-10-14 Thread Thomas Kellerer
Enrique Perera Abreu schrieb am 14.10.2021 um 21:42: I teach basic Java for students and I had NetBeans 8.2 installed in my MacBookAir. My programs are too basics and shorts. Then I decided to grow NetBeans version to the newest 12.5. So I installed the JDK 17 and the NetBeans 12.5. Now, with

Re: Error in perfectly correct file

2021-08-28 Thread Thomas Kellerer
I think it would also be nice if the cache could be deleted from within NetBeans to avoid a restart. Even better, if that could be done for specific projects. Pieter van den Hombergh schrieb am 28.08.2021 um 13:25: Had similar issues with other projects. Maven build has no issues, but the

Initializing Bugtracking repositories

2021-06-29 Thread Thomas Kellerer
Today my NetBeans 12.4 (Java 11, Windows 10) suddenly started display a process feedbac labelled "Initializing Bugtracking repositories" in the status bar. This happened after I pushed some changes to my git repository (codeberg) It has been running for about 10 minutes now without any actual

Re: Gradle support and depending projects

2021-06-29 Thread Thomas Kellerer
) are typically in project B when I start NetBeans the next time. Closing and re-opening that project (and only that) seems to fix this problem as well. Thomas Kellerer schrieb am 21.06.2021 um 18:20: > For me, switchting to a different project groups fixes this error (at least > most of th

Re: Gradle support and depending projects

2021-06-22 Thread Thomas Kellerer
I already did that. With it enabled, NetBeans was pretty much unusable with our Gradle projects. Laszlo Kishalmi schrieb am 21.06.2021 um 18:38: Please check the Experimental Gradle Settings and disable the Lazy Source Group Initialization. On 6/21/21 9:20 AM, Thomas Kellerer wrote: For me

Re: Gradle support and depending projects

2021-06-21 Thread Thomas Kellerer
For me, switchting to a different project groups fixes this error (at least most of the time) Christian Pervoelz schrieb am 21.06.2021 um 15:34: Yes, usually that helps for me too, but here neither Clean, restarting the IDE or just reloading the projects helped. After playing around a bit

Re: Fix imports (Ctrl+Shift+I)

2021-06-08 Thread Thomas Kellerer
This seems to only happen with Ant projects. Maven projects don't seem to have this problem. If you expand the "JDK 11" node below the "Java dependencies" in the Ant project it shows the modules with the little blue icon but fails to include java.sql This is how the expanded JDK 11 node (in

Avoid cluttering gradle.properties

2021-06-02 Thread Thomas Kellerer
I am using NetBeans 12.4 with several gradle projects that use SpringBoot. When I configure the "Build Actions" in the NetBeans Properties to e.g. include "--args='--spring.profiles.active=my_profile'" then NetBeans puts this into the project's "gradle.properties" which would be committed to

Re: Gradle projects and attaching sources

2021-05-20 Thread Thomas Kellerer
Turns out the library in question is written in Kotlin which NetBeans apparently can't handle Thomas Thomas Kellerer schrieb am 19.05.2021 um 17:19: > Hello, > > I am trying to attach the sources to one of the jar files used in my Gradle > project. > >

Gradle projects and attaching sources

2021-05-19 Thread Thomas Kellerer
Hello, I am trying to attach the sources to one of the jar files used in my Gradle project. When I right click on the "Configurations" node directly and choose "Download sources" some sources are downloaded others (the ones I need) are not. Then I opened one of the classes I am interested in,

Gradle - displaying dependency graph like Maven

2021-05-03 Thread Thomas Kellerer
When debugging problems with transitively included libraries in Maven, I find the graph display of the POM extremely helpful. But I can't find anything similar when using a Gradle project. Am I missing something, or does this simply not exist? I am using NetBeans 12.3 Regards Thomas

Re: removing the "new project" support for Ant projects

2021-04-21 Thread Thomas Kellerer
Another +1 for NOT removing Ant support. As far as the "New Project" dialog is concerned: What about creating a new category "Other" (or maybe even "Legacy") that in turn contains the "Java with Ant" category to make the "Ant option" less prominent. Just my 0.02€ Thomas Marco Rossi schrieb

Re: Specify JVM arguments with Gradle

2021-03-25 Thread Thomas Kellerer
Hmm... I added -Dsomeprop=somevalue into the "Run action" so the initial "bootRun" became: -Dsomeprop=somevalue bootRun but inside the application System.getProperty("someprop") returns null. What am I missing here? Thomas Kellerer schrieb am

Re: Specify JVM arguments with Gradle

2021-03-24 Thread Thomas Kellerer
Thanks. Mark A. Flacy schrieb am 22.03.2021 um 17:08: > Right-click on the project in the Projects window, open the Project > Properties. Look for Build -> Build Actions. > > > On Monday, March 22, 2021 10:14:18 AM CDT Thomas Kellerer wrote: >> Hello, >> >> i

Specify JVM arguments with Gradle

2021-03-22 Thread Thomas Kellerer
Hello, is it possible to define specific JVM arguments (-Dxxx=...) that should be used by Gradle when running (or testing) an application? I do not want to modify build.gradle as those would be environment specific settings, which should not be stored in the Git reposiotry. When I do it on

Re: Strange (funny?) About dialog

2021-03-18 Thread Thomas Kellerer
you've > installed something from the 8.2 update center, either now or in the past and > you're still using the user directory where you installed whatever it is. > > Gj > > On Thu, Mar 18, 2021 at 12:34 PM Thomas Kellerer <mailto:sham...@gmx.net>> wrote: > > Neil

Re: Strange (funny?) About dialog

2021-03-18 Thread Thomas Kellerer
Neil C Smith schrieb am 18.03.2021 um 10:54: >> I just opened the About dialog on NetBeans 12.3 and it shows this: >> >> Product Version: Apache NetBeans IDE 12.3 >> Updates: NetBeans IDE is updated to version NetBeans 8.2 Patch 2 >> Java: 16; OpenJDK 64-Bit Server VM 16+36 >>

Strange (funny?) About dialog

2021-03-18 Thread Thomas Kellerer
Hello, I just opened the About dialog on NetBeans 12.3 and it shows this: Product Version: Apache NetBeans IDE 12.3 Updates: NetBeans IDE is updated to version NetBeans 8.2 Patch 2 Java: 16; OpenJDK 64-Bit Server VM 16+36 Runtime: OpenJDK Runtime Environment 16+36 System:

Re: A little Gradle problem

2021-03-16 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

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

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

A little Gradle problem

2021-03-12 Thread Thomas Kellerer
I have a multi-module Gradle project that compiles fine and runs all tests from the command line. Building and testing (right-click on the project, then choosing "Test") also works fine from within NetBeans. However, one Test has the following imports: import

Re: C/C++ is NetBeans really worth using?

2021-02-23 Thread Thomas Kellerer
frui...@yahoo.co.uk.INVALID schrieb am 23.02.2021 um 17:17: @Geertjan Wielenga suggested running NetBeans on a JDK earlier than 14. I had been using jdk-15.0.2 and the next lowest on the Oracle site seemed to be jdk-11.0.10 so I downloaded and installed that. There did not seem to be a way

Re: Netbeans code assist not picking up classes under JRE Full Profile

2021-02-08 Thread Thomas Kellerer
How do you do that with an Ant based project? Those modules also don't show up when you expand the "JDK" node in the "Libraries" part of the projects window. Thomas Daoud Abdelmonem Faleh schrieb am 08.02.2021 um 14:19: > Make sure you have Java.sql module imported >   >

Re: gradle problems (NetBeans 12.2)

2021-02-01 Thread Thomas Kellerer
pache/netbeans/pull/2629 > > These are in 12.3-beta1 > > On 1/28/21 11:44 PM, Thomas Kellerer wrote: >> Hello, >> >> I am working with a gradle project that uses multiple sub-modules, something >> along the lines: >> >>    project >> module_1 >>  

gradle problems (NetBeans 12.2)

2021-01-28 Thread Thomas Kellerer
Hello, I am working with a gradle project that uses multiple sub-modules, something along the lines: project module_1 module_2 module_3 module_4 Despite the fact that the build on the command line works just fine (and none of the IntelliJ users have a problem), NetBeans

Re: How to upgrade from netbeans directly

2020-12-21 Thread Thomas Kellerer
Alan schrieb am 21.12.2020 um 20:58: More confusing and more than a bit of a pain. At the risk of being repetitive, does anyone know how to persist window layouts and open files across version updates? Even a clue would help. I typically just keep the old user dir. I only delete the

Re: Downloading JavaDocs when using Gradle

2020-12-14 Thread Thomas Kellerer
12/14/20 12:04 AM, Thomas Kellerer wrote: >> No ideas? Is this simply not possible with Gradle? >> >> I also tried it with 12.2, but that wouldn't download the JavaDocs either >> >> Thomas >> >> >> Thomas Kellerer schrieb am 03.12.2020 um 16:20: >

Re: Downloading JavaDocs when using Gradle

2020-12-14 Thread Thomas Kellerer
No ideas? Is this simply not possible with Gradle? I also tried it with 12.2, but that wouldn't download the JavaDocs either Thomas Thomas Kellerer schrieb am 03.12.2020 um 16:20: > Hello, > > I can't get the "Download JavaDoc" option to work with Gradle. > > What

Re: NB 12.2 Highlights

2020-12-08 Thread Thomas Kellerer
Ah, great. Thanks. Laszlo Kishalmi schrieb am 08.12.2020 um 20:20: It is possible to disable it: Tools > Options > Miscellaneous > Janitor On 12/8/20 11:02 AM, Thomas Kellerer wrote: Brenden Towey schrieb am 08.12.2020 um 18:31: 2. The "janitor" that checks old installs

Re: NB 12.2 Highlights

2020-12-08 Thread Thomas Kellerer
Brenden Towey schrieb am 08.12.2020 um 18:31: 2. The "janitor" that checks old installs and cleans them up is useful idea. Actually I would like to disable that. It also complains that I haven't used VisualVM for a while. And I purposely keep an old NetBeans 8.0 installation around. So I get

Re: Moving the .M2 folder in Netbeans

2020-12-04 Thread Thomas Kellerer
Nelligan, Steven M schrieb am 03.12.2020 um 17:02: > I want to move the .m2 folder from my windows user's profile folder to be > within my project folder. > i.e. C:\dev\Projects-Java8\.m2 > > In Netbeans \Options\Java\Maven I have the following configurations: > Maven Home: C:\Program

Downloading JavaDocs when using Gradle

2020-12-03 Thread Thomas Kellerer
Hello, I can't get the "Download JavaDoc" option to work with Gradle. What I did with Maven projects was to initiate the JavaDoc popup for a class or method. Then I click on the "Attach Javadocs..." link in the popup window which makes the "Select JavaDoc" window appear (mentioning the .jar

Re: How to reset/remove the stored Git password?

2020-12-03 Thread Thomas Kellerer
Peter Hull schrieb am 03.12.2020 um 11:46: > On Thu, 3 Dec 2020 at 09:49, Peter Hull > wrote: > > > I can see implementations for Gnome, KWallet and Mac, not sure about > Windows. There is a class called FallbackProvider which is maybe used for > windows? > >

Re: How to reset/remove the stored Git password?

2020-12-03 Thread Thomas Kellerer
itzgerald napsal(a): >> Then it's probably not about NetBeans but about the system keychain. Which >> OS are you working on? >> >> >> Malcolm >> >> >> On 3/12/20 9:04 pm, Thomas Kellerer wrote: >>> No, it's not about Git. >>> >>

Re: How to reset/remove the stored Git password?

2020-12-03 Thread Thomas Kellerer
git documentation here: > > https://git-scm.com/doc > > Lisa > > On 12/2/2020 10:45 PM, Thomas Kellerer wrote: >> Hmm. >> >> There is no such directory in the NetBeans user directory. >> >> If you are referring to the the config file in the Git reposi

Re: How to reset/remove the stored Git password?

2020-12-02 Thread Thomas Kellerer
t; On 12/2/2020 1:28 AM, Thomas Kellerer wrote: >> Hello, >> >> I accidently entered the wrong password for my git remote server and chose >> "Save password". >> >> How can I delete that stored password? (NetBeans seems to try to use the old >>

How to reset/remove the stored Git password?

2020-12-02 Thread Thomas Kellerer
Hello, I accidently entered the wrong password for my git remote server and chose "Save password". How can I delete that stored password? (NetBeans seems to try to use the old password, causing my Git account to be locked) I could find a "svn" sub-directory in my NetBeans User directory which

Re: How to make a different JDK the "default"

2020-11-25 Thread Thomas Kellerer
l...@cerner.com <mailto:chris.l...@cerner.com> | Cerner Limited > <http://www.cerner.com/> > >> On 25 Nov 2020, at 07:42, Thomas Kellerer > <mailto:sham...@gmx.net>> wrote: >> >> Hello, >> >> I am running NetBeans on OpenJDK 14, but all projects

How to make a different JDK the "default"

2020-11-24 Thread Thomas Kellerer
Hello, I am running NetBeans on OpenJDK 14, but all projects I have, are using Java 11 so I have an OpenJDK 11 defined through "Java Platforms". However, when I open a Maven or Gradle project, I always have to manually select JDK 11 in the project options despite the projects defining the

Re: Setting up Maven to automatically recompile changed dependent projects

2020-07-15 Thread Thomas Kellerer
David Gradwell schrieb am 15.07.2020 um 16:16: > Can anyone offer advice as to how to achieve my goal of Maven > automatically recompiling changed dependent projects? In the "Actions" section of the project's properties you can select the actions where you want that to happen (e.g. "Run Project"

Re: "Runtime Platform" in (Ant) project properties

2020-06-10 Thread Thomas Kellerer
> > On Sat, Jun 6, 2020 at 11:25 AM Geertjan Wielenga <mailto:geert...@apache.org>> wrote: > > Can you describe your scenario more explicitly so that it can be > understood?  > > I.e., why do you want to compile & build with JDK 8 and run with JDK

Re: "Runtime Platform" in (Ant) project properties

2020-06-10 Thread Thomas Kellerer
compile & build with JDK 8 and run with JDK 11? > > Gj > > On Sat, Jun 6, 2020 at 10:59 AM Thomas Kellerer <mailto:sham...@gmx.net>> wrote: > > Thomas Kellerer schrieb am 29.05.2020 um 09:52: > > What is the intended use of the "Runtime Platform

Re: "Runtime Platform" in (Ant) project properties

2020-06-06 Thread Thomas Kellerer
Thomas Kellerer schrieb am 29.05.2020 um 09:52: What is the intended use of the "Runtime Platform" drop down in the project properties of an Ant project? The only option it shows is "Project Platform", even though I have multiple JDKs configured in the IDE. The "Mana

"Runtime Platform" in (Ant) project properties

2020-05-29 Thread Thomas Kellerer
What is the intended use of the "Runtime Platform" drop down in the project properties of an Ant project? The only option it shows is "Project Platform", even though I have multiple JDKs configured in the IDE. The "Manage Platforms" button next to the dropdown simply takes me to the "Java

Re: When will 12.0 be released?

2020-05-18 Thread Thomas Kellerer
HRH schrieb am 18.05.2020 um 13:14: The mailing list is an anachronism. No, it's not. I for one, prefer doing this via email rather than some cumbersome web front end. Mailing lists are also working extremely well for the Postgres project. Thomas

Re: Allowing classpath directory entries with /*

2020-04-29 Thread Thomas Kellerer
Thomas Kellerer schrieb am 26.04.2020 um 10:56: > Java has been supporting providing a classpath with a wildcard for quite some > time now, e.g.: > >    java -cp libs/* com.package.MyClass > > which is really usefull especially if you are using libraries with version >

Allowing classpath directory entries with /*

2020-04-26 Thread Thomas Kellerer
Java has been supporting providing a classpath with a wildcard for quite some time now, e.g.: java -cp libs/* com.package.MyClass which is really usefull especially if you are using libraries with version numbers. However in an Ant based project in NetBeans, it's not possible to define

Problems with Consolas font in NetBeans and Windows 10

2020-04-22 Thread Thomas Kellerer
Hello, I am using the (built-in) Consolas font for editing in NetBeans (and all other code editors actually). It seems that the line height in the NetBeans editor is a bit too small and cuts off the top most pixels. This isn't really a problem, except for upper case German umlauts (ÖÄÜ).

Re: 11.3 - Can't use "Package As" with Ant project any more

2020-03-10 Thread Thomas Kellerer
Thanks, that works, but unfortunately it bundles the JDK 8 rather then JDK 11 (which is selected for the project) Thomas Geertjan Wielenga schrieb am 09.03.2020 um 12:03: Maybe it will still work if you run NetBeans itself on JDK 8. Gj On Mon, 9 Mar 2020 at 11:54, Thomas Kellerer

11.3 - Can't use "Package As" with Ant project any more

2020-03-09 Thread Thomas Kellerer
I found it very convenient to use the "Package as Image Only" feature in the past. I have an old Ant-based project where this used to work, but when I tried it with the latest NetBeans 11.3, it fails because NetBeans tries to use some JavaFX classes. The error message I get when invoking

Re: [Netbeans 11.2][JDK 13] Resolution issue

2020-03-02 Thread Thomas Kellerer
Bilu Al schrieb am 28.01.2020 um 17:22: > My Netbeans 11.2 looks ugly when starting with jdk-13. > > Below you can see the the difference between NB 11.2 + jdk-13 (righ) and NB > 11.1 jdk-8 (left): > > netbeans.PNG > > I have the same issue with NB 11.1 + JDK >= 11. > > NB 11.2 + JDK 8 works

Re: Refactor renaming hardly works anymore

2020-02-17 Thread Thomas Kellerer
Still happens to me with beta3 (unless I uninstall nb-javac) Laszlo Kishalmi schrieb am 17.02.2020 um 18:37: I'd recommend to test 11.3-beta3, there were a lot of improvements around refactoring. I myself fixed 2 bugs during the beta cycle. On 2/17/20 5:56 AM, Martin Desruisseaux wrote:

Re: Refactor renaming hardly works anymore

2020-02-17 Thread Thomas Kellerer
Hans Grimmselshausen schrieb am 17.02.2020 um 12:09: > Does anybody know if this "refactoring-problem due to nb_javac > plugin" already in the bug database? Because it confuses users a lot. > Actually I thought "Am I the only persons in the world who used > Netbeans for many years but suddenly

Re: Refactor renaming hardly works anymore

2020-02-17 Thread Thomas Kellerer
Hans Grimmselshausen schrieb am 17.02.2020 um 11:41: > With Netbeans 11.2 (but also with 11.0) running in OpenJDK 11.0.6 on > Ubuntu 18 LTS, for some time I experience a lot of problems when I > try to refactor-rename public variables and functions in my mid-sized > project. Mostly but not always,

Re: NB 11.2 update 1

2019-12-09 Thread Thomas Kellerer
Geertjan Wielenga schrieb am 09.12.2019 um 14:43: > In the meantime, until we figure this out -- best to open a new issue > with log files and messages after starting from scratch and > installing update 1 from scratch -- would be to not use nb-javac at > all, assuming you're running on a JDK

Re: NB 11.2 update 1

2019-12-09 Thread Thomas Kellerer
with fresh userdir and password, then install the update, and then > describe exactly what it is that is not working as expected. > > Gj > > On Mon, Dec 9, 2019 at 6:25 AM Thomas Kellerer <mailto:sham...@gmx.net>> wrote: > > Neil C Smith schrieb am 08.12.2019

Re: NB 11.2 update 1

2019-12-08 Thread Thomas Kellerer
Neil C Smith schrieb am 08.12.2019 um 18:45: > On Sun, 8 Dec 2019 at 17:14, Thomas Kellerer wrote: >> I got some minor updates for two or three modules through the update center. >> >> Is that supposed to be Update 1? >> >> Because e.g. NETBEANS-3257 is not res

NB 11.2 update 1

2019-12-08 Thread Thomas Kellerer
Hello all, I got some minor updates for two or three modules through the update center. Is that supposed to be Update 1? Because e.g. NETBEANS-3257 is not resolved with that (contrary to what the blog announcement for update 1 stated) The latest version I see on the update center is 2.0.1

Re: Maven Platform App: Run App when working on module

2019-11-10 Thread Thomas Kellerer
Steven Yi schrieb am 10.11.2019 um 09:21: Having moved to Maven with my platform app, I've got a question about workflow. Right now when I'm working on a change in one of my modules, to test it, I have to: 1. Build the current module 2. Select the main application module 3. Run the main

Re: What's going on with refactoring?

2019-11-09 Thread Thomas Kellerer
Ty Young schrieb am 09.11.2019 um 08:58: On 11/9/19 1:53 AM, Geertjan Wielenga wrote: What happens when you uninstall nb-javac? Gj I deactivated it and still have the same issue. Disabling is not enough as I found out, you need to completely remove it.

  1   2   >