Re: Java version: 21 ... not supported by Gradle 8.5

2023-12-05 Thread Bernd Michaely
https://docs.gradle.org/current/userguide/compatibility.html On 04.12.23 01:24, Owen Thomas wrote: Is there a page I can read that outlines how Gradle will work with Java in the future? This stuff is giving me a headache. OpenPGP_signature.asc Description: OpenPGP digital signature

Re: Javadoc - font and background colours

2023-01-30 Thread Bernd Michaely
I have just seen, the javadoc tool has a command line option (provided by the Standard doclet) : --main-stylesheet , -stylesheetfile  File to change style of the generated documentation On 30.01.23 19:15, Bernd Michaely wrote: Don't know for sure, but I guess NB has no

Re: Javadoc - font and background colours

2023-01-30 Thread Bernd Michaely
Don't know for sure, but I guess NB has no such mechanism … I guess NB and pretty much any build system uses the standard way of generating javadoc, which is the javadoc tool of JDK (command line javadoc or tool API or whatever …) which creates a /api/stylesheet.css which you can adapt to your

Re: How to maintain *.java and *.form in different directories?

2022-10-19 Thread Bernd Michaely
On 18.10.22 19:24, Thorsten Schöning wrote: But images referenced in the *.form files should work in "resources", correct? If i remember correctly, GUI designer and *.form files have nothing to do at all with the build process (in the sense of Gradle), it is part of generating sources and ha

Re: How to maintain *.java and *.form in different directories?

2022-10-19 Thread Bernd Michaely
Indeed Gradle keeps different types of files like sources and resources in different subdirectories. *.form files are another type of files, which are created and needed even before compilation and are not to be deployed, so they would reside in their own subdirectory aside sources and resourc

Re: Use JDK preview features in Gradle

2022-09-28 Thread Bernd Michaely
a search for »preview features« on the website https://docs.gradle.org finds: https://docs.gradle.org/current/userguide/building_java_projects.html#sec:feature_preview (assuming you mean Java preview features, not Gradle preview features :-) (this should be sufficient – don't think NetBeans ne

Re: Simple navigation question

2022-08-24 Thread Bernd Michaely
… plus you can configure toolbar buttons: Bernd On 21.08.22 15:19, Thomas Wolf wrote: If I understood the question, right-clicking in the file and selecting “Select in Project” will highlight the file in the project tree. Tom On Aug 21, 2022, at 8:09 AM, Amn wrote:  Nice!! How do you

Re: Should I exclude ./gradle/nb-cache from commit?

2022-08-07 Thread Bernd Michaely
I might be able to provide others with the same from time to time. On Sun, 7 Aug 2022 at 02:16, Bernd Michaely wrote: The original Gradle (7.5) doc says: The project root directory contains all source files that are part of your project. In addition, it contains files and d

Re: Should I exclude ./gradle/nb-cache from commit?

2022-08-06 Thread Bernd Michaely
The original Gradle (7.5) doc says: The project root directory contains all source files that are part of your project. In addition, it contains files and directories that are generated by Gradle such as |.gradle| and |build|. While the former are usually checked in to source control, the latt

Re: NetBeans interface with Java

2022-05-11 Thread Bernd Michaely
… and also available through the "Settings…" item in the context menu of the output window On 10.05.22 17:35, Laszlo Kishalmi wrote: Tools > Options > Miscellaneous > Output > Font Size On 5/10/22 07:38, Michael Rootshtain wrote: Hi, I have increased the size of the font in the editor in A

Re: [apache netbeans12[ [javafx] [install] Can't install correctly.

2022-02-13 Thread Bernd Michaely
It's such a shame they dropped such a great piece of software like JavaFX from JDK. Compared to JavaFX, Swing looks age-old, in particular internally. (E.g., if I'm correct, a JavaFX TreeView uses an ObservableList of children, while JTree doesn't even use a java.util.List for its children.)

Re: Netbeans struggles with hierarchical Gradle Projects

2021-08-21 Thread Bernd Michaely
Hi, I'm just curious, sourceSets { main { resources { srcDirs"src/main/java" } } } Is it good practice to define the resources dir equal to the src dir? I think, this might cause problems including: * it (at least unnecessarily) confuses

Re: JavaFX deployment library not found in active JDK

2019-09-17 Thread Bernd Michaely
Hi, | warning: [options] bootstrap class path not set in conjunction with -source 8 it seems you are using JDK 11 (which needs a separate OpenJavaFX), but with target Java version 8 (which contains its own JavaFX8), so there is a conflict ... (so e.g. inside NetBeans see: Project Properti

Re: [ Java 11 - Netbeans 9 ] Creating modular project, doesn't generate manifest file

2018-10-07 Thread Bernd Michaely
Hi, it seems NetBeans9.0 can't (yet) add a Main-Class to the MANIFEST.MF file to create "self-executing" jars/modules, it can be added later with the jar tool, e.g. in the example: jar --update --file=com.toy.anagrams.jar --main-class='com.toy.anagrams.ui.Anagrams' Bernd Am 07.10.18 um 0