Re: Netbeans 12.6 - nb-javac

2021-12-10 Thread Christoph Theis
On 10.12.2021 19:24, Marvin P. Warble Jr. wrote: You'll need to check the "Show Details" checkbox to see it. Ah, that's the trick. Thank you! -- Christoph - To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org For

Re: Netbeans 12.6 - nb-javac

2021-12-10 Thread Christoph Theis
How do I uninstall nb-javac? -- Christoph - To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org For additional commands, e-mail: users-h...@netbeans.apache.org For further information about the NetBeans mailing

Re: Subversion with javahl > 1.9

2021-12-06 Thread Christoph Theis
It is not about communication aka TLS but the LTS versions of SVN. NB can't use javahl later than 1.9 and that seems to be hard wired. See https://issues.apache.org/jira/browse/NETBEANS-2939 For the moment I live with the CLI, but some operations are not possible that way so a moer recent javahl

Re: Subversion with javahl > 1.9

2021-12-06 Thread Christoph Theis
cli doesn't support all operations. And javahl 1.9 doesn't support my current state of the workspace. So me too is looking for support of a more current javahl version. Best regards -- Christoph Theis - To unsubscribe, e-mail

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

2021-04-23 Thread Christoph Theis
On 23.04.2021 16:17, Emma Atkinson wrote: Christoph The guide suggests Ant and Gradle builds coexist until one has confidence that both build tools produce the same things. That was what I intended and why I choose the Gradle-path, but I could not make it work. A tool doing the heavy lifting

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

2021-04-23 Thread Christoph Theis
On 23.04.2021 15:22, Laszlo Kishalmi wrote: Ant projects can be fairly simply can be migrated to Gradle. It can support your current folder structure. Your file/directory based library dependencies, and occasional customization you made. Been there, tried that, and failed. If you have a

Re: NB 12.1 PHP xdebug

2021-02-15 Thread Christoph Theis
I had similiar problems but got it running with NB 12.x, php 7.4 and xdebug 3.x. But don't ask for details ... If you don't see any log file, is the file / path accessible by www-data (or whatever user you are running the server under)? Is someone listening on your xdebug port? Did you set the

Re: TikiOne JaCoCoverage plugin

2021-01-14 Thread Christoph Theis
On 14.01.2021 19:58, Joe Kasprzyk wrote: I've downloaded the project and attempted to build. The plugin is a suite of four modules - for each module, the source level was updated to 11. When "clean and build"ing each of the four modules, three (JaCoCo Library, TikiOne JaCoCo Reporting Library,

Re: nightlies?

2020-10-01 Thread Christoph Theis
On 01.10.2020 21:40, Neil C Smith wrote: On Thu, 1 Oct 2020, 20:37 Christoph Theis, mailto:th...@gmx.at>> wrote: Half offtopic: where would I find the nightly artifacts for Windows, if they exist? The link in the original email, or as on the website. Linux in the link there

Re: nightlies?

2020-10-01 Thread Christoph Theis
Half offtopic: where would I find the nightly artifacts for Windows, if they exist? Christoph - To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org For additional commands, e-mail: users-h...@netbeans.apache.org For

Re: 12.1 ?

2020-09-30 Thread Christoph Theis
On 30.09.2020 15:03, Neil C Smith wrote: On Wed, 30 Sep 2020 at 08:17, Christoph Theis wrote: I really don't understand why the discussion got so out of hand. As a user I expect that "Check for updates" informs me about new patches *and* releases I'm not sure it got out of

Re: Nested SVN repositories in a project

2019-09-03 Thread Christoph Theis
Am 03.09.2019 um 12:58 schrieb Markus Klein: Anyone know where to obtain a *current 64 bit JavaHL?* I had no luck googling, and the listed windows clients on subversion.apache.org didn't help: * SilkSVN: doesn't provide JavaHL I think SilkSVN does, I have a libsvnjavahl-1.dll, version 1.9.7

Re: Problem with setting default JDK in NetBeans 11.1

2019-08-21 Thread Christoph Theis
Dear Steven, from what I read it turns around to make 1.7 the default platform. I don't think it is necessary in order to build a project with a specific JDK to make that JDK the default. Instead, you can add other platforms to Netbeans (Tools / Java Platforms) and then select one of these in

Re: how to put focus inside JDialog with netbeans

2019-06-03 Thread Christoph Theis
Am 03.06.2019 um 16:28 schrieb Luis tuti: I have a JDialog created by Netbeans. How could I put focus in a jTextArea when I open the JDialog. I know after pack() method with jTextArea.requestFocus() works but in Netbeans can't modify initComponents() method. I put my code into the constructor