Re: Flatlaf highlighting of deprecation

2025-07-18 Thread Michael Bien
On 7/18/25 17:51, Neil C Smith wrote: > Hi, > > On Thu, 17 Jul 2025 at 18:52, Mitch Claborn wrote: >> FlatLaf dark highlights deprecations in Java source code (e.g. Byte b = new >> Byte(ipaddr[i]);). >> I find that too visually similar to the highlighting that is done of all >> uses the selecte

Re: Can Netbeans do Rust?

2025-07-14 Thread Michael Bien
there is no rust support in the NetBeans release but if you build NB with the "full" cluster config you could play around with the experimental rust modules. ant -Dcluster.config=full build -mbien On 7/14/25 05:10, Bradley Willcott wrote: > Hi there. > > I too am looking into Rust. But for me

Re: Platform Application Deployment: Missing netbeans-javaagent.jar

2025-07-04 Thread Michael Bien
Hi, On 7/4/25 13:17, Daniel Hartman wrote: > All,  > > I just migrated my platform application from NetBeans 12.4 to NetBeans 26. > > I can create a distribution as before by right-clicking my application within > the IDE and selecting Package As → Zip Distribution. However, when I attempt > to

Re: git pull/push not working over ssh

2025-06-25 Thread Michael Bien
Hi, On 6/25/25 10:44, avaluedcusto...@freenet.de wrote: > Hello, > > > I am working on a project where the git repository is cloned via ssh (I am > using Windows 10 if that makes a difference). > > > When I am trying to pull or push, NetBeans always asks me for my credentials: > https://i.imgur

Re: Does anyone still make NetBeans Platform Applications in 2024/2025?

2025-06-12 Thread Michael Bien
On 6/10/25 14:06, Peter Hull wrote: > On Tue, 10 Jun 2025 at 12:31, Neil C Smith wrote: >> The one thing I do find increasingly frustrating is the lack of >> investment in the upstream maintenance effort for the platform from >> them, particularly those larger companies. > On a (slightly) related

Re: Navigator component display limit with large JSON files?

2025-06-06 Thread Michael Bien
On 6/6/25 19:09, Michael Bien wrote: > On 6/6/25 15:18, Tim Mullé wrote: >> Thanks..but that doesn’t seem to work. >> It seems even the IDE itself limits the Navigator to 1MB files. > -J-Dnb.js.parse.big.files=true works for me > >> >> It would be nice if a War

Re: Navigator component display limit with large JSON files?

2025-06-06 Thread Michael Bien
On 6/6/25 15:18, Tim Mullé wrote: > Thanks..but that doesn’t seem to work. > It seems even the IDE itself limits the Navigator to 1MB files. -J-Dnb.js.parse.big.files=true works for me > > > It would be nice if a Warning dialog appeared like it does when you try to > open large files in the edit

Re: Navigator component display limit with large JSON files?

2025-05-28 Thread Michael Bien
Hi, some language parsers have limits configured to skip large files. for JS (and I suppose JSON) it would be the nb.js.parse.big.files property. The size limit is set using nb.js.big.file.size. A 1MB json is probably at about 30k lines - at some point the navigator tree wouldn't be that useful

Re: Updating from NB Platform 24 to 26 breaks looks and feels and ui

2025-05-28 Thread Michael Bien
oh! Yes that module is no more. It got replaced by the new dashboard https://github.com/apache/netbeans/pull/7239 and removed a few releases later. I recommend extracting the version into a maven property, so that you can bump all dependencies at once without risking to overlook one. regards, mic

Re: [platform] default options and add-opens+add-exports

2025-05-28 Thread Michael Bien
On 5/28/25 16:44, Patrik Karlström wrote: > Inline below... > > Den tis 27 maj 2025 kl 16:41 skrev Michael Bien : > > Hi Patrik, > > the list will highly depend on the dependencies of your application ;) > > > That much I understand ;)  > I have added the

Re: An unexpected Netbeans Warning

2025-05-27 Thread Michael Bien
Hi, making a guess based on the log you provided: you run a maven 3 project on JDK 24? This is the JDK complaining that some jar (e.g guava) is making method calls which were deprecated for removal in a future java release. You should see the same output when you run the build in the termina

Re: [platform] default options and add-opens+add-exports

2025-05-27 Thread Michael Bien
Hi Patrik, the list will highly depend on the dependencies of your application ;) If the platform application doesn't depend on any java editor features for example, the list should be already significantly smaller than the one in the NetBeans config. Cleanups and JDK version bumps within NetB

Re: Possibility to force new calculation of error notifications in project view?

2025-05-12 Thread Michael Bien
nide.util.RequestProcessor$Task.run(RequestProcessor.java:1403) >     at > org.netbeans.modules.openide.util.GlobalLookup.execute(GlobalLookup.java:45) >     at org.openide.util.lookup.Lookups.executeWith(Lookups.java:287) >     at > org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:2018) >

Re: Possibility to force new calculation of error notifications in project view?

2025-05-06 Thread Michael Bien
On 5/5/25 09:39, Jens Zurawski wrote: > Hi folks, > > I have a nasty problem every time I'm updating to a new Netbeans Version, > which really prevents me from doing it too often. So every now and then I'm > skipping a version to avoid this issue. > > I'm working (besides others) on a big EE appl

Re: NB 24 from the Ubuntu Taskbar?

2025-05-04 Thread Michael Bien
On 5/5/25 00:00, Owen Thomas wrote: > Hello. > > If memory serves me correctly, I installed NB 18 from a zipped tar in Ubuntu > 24.04. I recently had to purchase a new computer and, from Ubuntu 24.04, I > installed NB 24 through the same way. the NetBeans project doesn't release anything package

Re: Git unstash - drop option?

2025-04-01 Thread Michael Bien
Hi Mitch, you should be able to drop stash items from the repository window. Team -> Repository -> Repository Browser -> Stashes The git stash integration is a bit lacking in NB since I believe it was added long after NB already had a version system neutral "shelve changes" concept in place.

Re: Update to NetBeans 25 with all projects and settings

2025-03-02 Thread Michael Bien
best regards, michael > Thanks a lot. > Regards > Claus > >> Am 03.03.2025 um 06:41 schrieb Michael Bien : >> >> are you saying it didn't ask if it should import the previous configuration >> on first launch? >> >> Did you skip a few NB release

Re: How to display the "favorites bar" for a file chooser in a platform application?

2025-03-02 Thread Michael Bien
On 01.03.25 21:32, avaluedcusto...@freenet.de wrote: > No change for me. I guess I somehow need to define the NetBeans favorites to > make that panel appear. > > But my application has not UI for setting favorites, and I hoped that it > would be possible to manage > them through the panel in the

Re: Update to NetBeans 25 with all projects and settings

2025-03-02 Thread Michael Bien
are you saying it didn't ask if it should import the previous configuration on first launch? Did you skip a few NB releases? Since there is a limit how large the gap can be for the auto-importer. -mbien On 03.03.25 06:31, Claus Lüthje wrote: > Hi all > I’m using NetBeans for ages and I was sur

Re: How to display the "favorites bar" for a file chooser in a platform application?

2025-03-01 Thread Michael Bien
Hi, nice to hear that someone is using the favorites list integration :) seems to work for me, tested it with:     JFileChooser fs = new FileChooserBuilder("/tmp").createFileChooser();     fs.showOpenDialog(null); in a NetBeans application and it had the shortcuts panel with the favorit

Re: Issue updating NB platform app to NB25

2025-02-28 Thread Michael Bien
On 24.02.25 10:43, Neil C Smith wrote: > On Sun, 23 Feb 2025 at 01:35, Michael Bien wrote: >> On 22.02.25 18:23, Jerome Lelasseux wrote: >>> Is it the problem mentionned in the release notes "Windows/ARM is currently >>> not a fully supported platform" ? BT

Re: NB 24 installation failed with corrupted registry

2025-02-25 Thread Michael Bien
there is no convenient way but you should always be able to manually remove NetBeans (including installer config files in AppData/Local/Temp), then install it again using the same (in your case NB23) installer. Once done, uninstall it which should now work. This will create fresh config files f

Re: Lombok Integration seems broken with Netbeans 25

2025-02-23 Thread Michael Bien
see https://github.com/apache/netbeans/discussions/8221 in short: lombok as of right now does not support javac 24 yet and the editor support of NB 25 integrates with nb-javac based on JDK 24. -> consider using NB 24 for a while longer and watch out for new lombok releases which state JDK 24 su

Re: Issue updating NB platform app to NB25

2025-02-22 Thread Michael Bien
Hi, On 22.02.25 18:23, Jerome Lelasseux wrote: > Hi, > > Just updated POM with RELEASE250, it was > working fine with 240. > > App shuts down during init procedure with no error, except the new INFO > messages related to SecurityManager, see below. set ||-DTopSecurityManager.disable=true (#8169

Re: Problem with the Digest

2025-02-06 Thread Michael Bien
Hi! so I subscribed to it too and could see the same on some mails. I asked the apache infra team and it is a known issue already: https://issues.apache.org/jira/browse/INFRA-23675 they never could get on the bottom of it though unfortunately. I personally simply subscribe to lists the regu

Re: Corrupted display NB230+Nvidia ?

2025-01-31 Thread Michael Bien
Hi Jerome, driver bugs are certainly possible but I don't remember any recent bug reports in that area. I think there were 1-2 wayland specific issues but thats it. The screenshot looks like buffer/memory problems, however this could also be caused by a hardware issues. I once had a PSU whic

Re: Maven projects CreateProcess Error

2025-01-31 Thread Michael Bien
exec-maven-plugin                 3.5.0                 true                                         On Fri, Jan 31, 2025 at 9:32 AM Michael Bien wrote: On 31.01.25 15:06, Alessandro Ferrucci wrote: > Hi Michael - > > > > On Fri, Jan 31, 2025 at 8:51 

Re: Maven projects CreateProcess Error

2025-01-31 Thread Michael Bien
On 31.01.25 15:06, Alessandro Ferrucci wrote: Hi Michael - On Fri, Jan 31, 2025 at 8:51 AM Michael Bien wrote: Hi, this is windows telling via a fairly misleading error message that the process argument length exceeds its limit. Classpath for example can get quite long

Re: Maven projects CreateProcess Error

2025-01-31 Thread Michael Bien
Hi, this is windows telling via a fairly misleading error message that the process argument length exceeds its limit. Classpath for example can get quite long since it contains file paths, when passed as argument it could cause this failure - this is windows specific since all other OSes can

Re: Problem with the Digest

2025-01-30 Thread Michael Bien
you can see your own mail in the archive, so it is being correctly received: https://lists.apache.org/thread/v4n23bsbqrpgr9o9ty3ovg8qktq6pmqx i don't use the list digest very often so I can't comment on that. -mbien On 31.01.25 07:03, Bradley Willcott wrote: . . . . . . This list is getting t

Re: Submitted plugin not visible in Plugin Portal or Plugin Manager

2025-01-15 Thread Michael Bien
Three of your plugins are still in the verification queue, one got already verified and should be available. According to the timestamp you requested verification today for the three in the queue. Verification is a manual process handled by volunteers - plugins won't be instantly available aft

Re: preferred editor settings for NetBeans contributions or fixes

2024-12-30 Thread Michael Bien
Hi! sorry I must have overlooked this mail. But I did see your PR - thank you for the bugfix! For new code we typically use the NetBeans default settings (or something close to them). While modifying existing code we try to not reformat things unless whole sections are rewritten. so lets s

Re: Netbeans 24 Usages Tab

2024-12-27 Thread Michael Bien
e Le lundi 16 décembre 2024 à 20:30:42 UTC+1, Neil C Smith a écrit : On Mon, 16 Dec 2024 at 18:52, Michael Bien wrote: > But contributions are welcome - tricky part is to chase all the > implementations down. Totally this!  If you want it optional, put the time into it, making su

Re: Find usages appears to be broken in NetBeans 24

2024-12-20 Thread Michael Bien
the second point about missing error markers sounds like https://github.com/apache/netbeans/pull/7937 There was also a CME fix for ant projects which broke code scanning in some cases https://github.com/apache/netbeans/pull/7989 (unfortunately didn't make it into NB24). For other issues plea

Re: Find usages appears to be broken in NetBeans 24

2024-12-20 Thread Michael Bien
Hi Chris, can you close all projects (or switch to an empty group) then restart NB and check if the same issue is reproducible with a freshly created hello world project. (any java project type of you choice) assuming everything works fine: is this about ant projects and did you see a Concur

Re: Netbeans 24 Usages Tab

2024-12-16 Thread Michael Bien
On 16.12.24 19:38, Scott Palmer wrote: On Mon, Dec 16, 2024 at 12:47 PM Michael Bien wrote: On 16.12.24 18:38, Neil C Smith wrote: > On Mon, 16 Dec 2024 at 17:30, m.war...@corvusengineering.com > wrote: >> I noticed with the Netbeans 24 release in the Usages tab

Re: Netbeans 24 Usages Tab

2024-12-16 Thread Michael Bien
On 16.12.24 18:38, Neil C Smith wrote: On Mon, 16 Dec 2024 at 17:30, m.war...@corvusengineering.com wrote: I noticed with the Netbeans 24 release in the Usages tab is split and shows the source code for the file results. Is this a feature or a bug? I find it extremely distracting and not us

Re: Can I use Maven Indexer CLI for the NB Maven index?

2024-11-25 Thread Michael Bien
On 18.11.24 20:02, Will Hartung wrote: On Sun, Nov 17, 2024 at 10:47 AM Michael Bien wrote: I personally barely notice index updates since they don't happen all that often. The one I just tested took about 150s. I don't think it ever ran while I used completion an

Re: Can I use Maven Indexer CLI for the NB Maven index?

2024-11-17 Thread Michael Bien
On 17.11.24 17:40, Will Hartung wrote: On Sat, Nov 16, 2024 at 6:17 PM Michael Bien wrote: Hi, the index updates happen in the background, can you clarify what you mean by being "blocked by the indexer"? It shouldn't block anything. A specific example is in th

Re: Can I use Maven Indexer CLI for the NB Maven index?

2024-11-16 Thread Michael Bien
Hi, the index updates happen in the background, can you clarify what you mean by being "blocked by the indexer"? It shouldn't block anything. If it happens at a time you don't want it to run and it already started (e.g low battery), you can simply cancel the task and it won't try again for a

Re: jpa metamodelgen in maven project

2024-11-15 Thread Michael Bien
Hi, can you check that compile-on-save is disabled? you should be able to pass the output dir directly to javac, without extra plugin. something like this:         maven-compiler-plugin     ${project.build.directory}/generated-sources/annotation-processors         if you fi

Re: change fonts NB23 Snap

2024-11-10 Thread Michael Bien
sure, check out $ netbeans --help ...   --fontsize set the base font size of the user interface, in points regards, -mbien On 10.11.24 15:01, Phil Longenecker wrote: Had to use the snap pkg to install NB23 on rPi5. The IDE fonts are tiny, basically a smudge on the screen for my eyes.

Re: "Remove Trailing Whitespace From" option not working for the line you have your cursor in

2024-11-08 Thread Michael Bien
Hi, I am not sure but this might be indeed intended. It would be weird if the cursor would move if the line isn't finished yet. is this a problem? regards, michael On 08.11.24 12:09, Lakshika Bandara wrote: Hi, I am currently using NetBeans version 18. I have set the option to remove tr

Re: Is it possible to change build/ and dist/ directories from within NB?

2024-11-05 Thread Michael Bien
Hi Thomas, I use ram disks quite often on linux, expectation wise: if you already have a NVMe drive you will rarely see any noteworthy speedup. So I use them for tasks i would have typically used /tmp before. For example a clone/build/run script for PR reviews. The advantage there is that ra

Re: Netbeans 22 can't load some modules

2024-11-01 Thread Michael Bien
module load failures often indicate that there is a problem yes. Would recommend to not import your config into NetBeans 23 and start fresh once you update to the current release. regards, michael On 01.11.24 18:58, slipbits wrote: I opened NB 22 and got the following warning message:    

Re: Upgrading embedded Tomcat instance

2024-10-29 Thread Michael Bien
s the Tomcat vulnerabilities. Will this be in the next release? PR #7919 is targeting NetBeans 25 right now. best regards, michael Thanks, Wyatt -Original Message- From: Michael Bien Sent: Monday, October 28, 2024 12:40 PM To: Tellis, Wyatt ; 'users@netbeans.apache.org'

Re: Upgrading embedded Tomcat instance

2024-10-28 Thread Michael Bien
Hi Wyatt, the embedded tomcat instance is used to preview generated javadoc and similar usecases. Since it isn't facing the web, the typical CVEs often don't apply there. Are you worried about something in particular? The embedded instance is a regular NetBeans dependency which can't be upda

Re: Adding new features

2024-10-28 Thread Michael Bien
Text blocks are part of the java language since JDK 15 or so. You can simply start using them if the JDK you target is recent enough. Make sure the language level on the project is set accordingly. -mbien On 28.10.24 09:17, Arbol One wrote: java 22.0.2 2024-07-16 Java(TM) SE Runtime Environ

Re: FlatLat not available in options dialog (NetBeans platform application)

2024-10-18 Thread Michael Bien
On 14.10.24 09:15, avaluedcusto...@freenet.de wrote: Hello, I have a NetBeans Platform application (migrated all the way from 8.x to 23) btw kudos to this achievement, this is quite a version jump :) best regards, michael ---

Re: [platform] Broken workflow with RELEASE230

2024-10-02 Thread Michael Bien
Hi Patrik, I noticed before that simply hitting "run" wasn't enough to get changes in using the nbm-maven-plugin, but I just tried to edit code and and build+run worked. It might depend however on where the changes are. changing an action registration might require a clean (not sure). Test

Re: [ config ] [ projects ] [ folder ]

2024-09-28 Thread Michael Bien
you can set it with the netbeans.projects.dir property -J-Dnetbeans.projects.dir=D:\NetBeansProjects -mbien On 28.09.24 16:58, Tony Franco wrote: Dear Sirs, Sorry to disturb you. Please, how can i change the default projects folder on Netbeans 23? I want to save all my projects at 'D:\NetBe

Re: Detached head problem

2024-09-25 Thread Michael Bien
"detached HEAD" can have many reasons. It only means that your workspace is not on any branch at the moment. e.g if you check out a specific commit hash or if you merge something which needs manual conflict resolution. 'git status' might tell you more. If nothing needs to be resolved and ev

Re: netbeans 23 - problem with creating a netbeans module

2024-09-20 Thread Michael Bien
Hi, this does work for me. Do you have anything unusual in your global maven settings.xml? The wizard is checking the central repo for version information, for some reason it is null which is unusual since it is the standard repo. -mbien On 20.09.24 16:01, Rafał Ziółkowski wrote: Hallo,

Re: Variable information is not available in debugger

2024-09-11 Thread Michael Bien
Hi Will, On 11.09.24 19:45, Will Hartung wrote: I'm sorry, my earlier message was prematurely sent, so this is the complete message (I hope), I've been debugging some code and dropping into some libraries. While I have the source code, when I mouse over local variables, I get the message:

Re: netbeans 22 does not build a maven project for netbeans application

2024-08-26 Thread Michael Bien
u are right! Release802 is as version reference. Interesting why, ideed I maintain an old Netbeans Application, but this should not bother new netbeans with java 18. Thank You! Now it's building correctly Rafal Z W dniu 23.08.2024 o 16:31, Michael Bien pisze: if you open the po

Re: netbeans 22 does not build a maven project for netbeans application

2024-08-23 Thread Michael Bien
allation of netbeans. There another installations of older versions od Netbeans, may be something interferes with new installation Thank's for answer With Regards Rafal Z W dniu 23.08.2024 o 15:25, Michael Bien pisze: Hi Rafal, pack200 is an outdated bytecode compression method. If

Re: netbeans 22 does not build a maven project for netbeans application

2024-08-23 Thread Michael Bien
Hi Rafal, pack200 is an outdated bytecode compression method. If you create a new NetBeans Application, the project template you would get should not make use of it by default. I just tried it again using NetBeans 22 on JDK 18 and "clean install" worked. btw JDK 18 itself is no longer supp

Re: can't run tests from Netbeans in a certain project

2024-08-07 Thread Michael Bien
i replied directly under the linked issue https://github.com/IQSS/dataverse/issues/10728#issuecomment-2273697543 (spoiler: its compile-on-save again) best regards, -mbien On 06.08.24 22:54, Philip Durbin wrote: HI! I put the details in https://github.com/IQSS/dataverse/issues/10728 but can an

Re: "Index Download Permission Request for 'Central Repository'"

2024-07-22 Thread Michael Bien
On 22.07.24 22:38, Will Hartung wrote: On Mon, Jul 22, 2024 at 12:45 PM Michael Bien wrote: Hi, I can't answer the mac questions, but the table in the maven indexer options is mostly there to inspect and reset existing permissions - default is an empty list. So i

Re: "Index Download Permission Request for 'Central Repository'"

2024-07-22 Thread Michael Bien
Hi, I can't answer the mac questions, but the table in the maven indexer options is mostly there to inspect and reset existing permissions - default is an empty list. So if you don't see an entry with the URL for maven central, NB either didn't need that permission yet (can be triggered by o

Re: NB 22 - java.lang.ExceptionInInitializerError on opening JavaEE xhtml files

2024-06-07 Thread Michael Bien
sounds like https://github.com/apache/netbeans/issues/7436 -mbien On 07.06.24 12:55, Jens Zurawski wrote: I've just made a test with NB-21. The problem/Exception does not occur. Also tested both installs, with and without importing of my NB-20 settings. So it's new in 22. cu Jens Am 07.06.

Re: Adding support for a file extension

2024-06-05 Thread Michael Bien
try options -> miscellaneous -> files This should be able to associate extensions with known mime types. -mbien On 05.06.24 18:33, Will Hartung wrote: I have my own little HTML templating files, but they have their own extension. So, even though they're 99% HTML, the IDE does not consider t

Re: Netbeans notification requests permission for Maven repo. But how?

2024-06-03 Thread Michael Bien
you can click the links. Since this looks like a local repo, it won't have an index file anyway so you can click the "deny" link and it won't ask again for this repo ID. This is meant for remote repos like maven central which offer big index files. -mbien On 03.06.24 21:21, Mark Koch wrote:

Re: Using Netbeans with SE 22

2024-06-02 Thread Michael Bien
Hi Owen, regarding NetBeans: you will need NetBeans 22 or later for Java 22 features (NB 22 should be officially released soon). Also keep in mind that JEP 447 (Statements before super) is a preview feature and preview features create non-portable bytecode which lock the bytecode to one JDK ve

Re: Netbeans and Emmet

2024-04-23 Thread Michael Bien
this is likely the project you are looking for: https://github.com/emmetio/netbeans it seems to lack maintainers but the last release might still work. Simply download the nbm and try to install it using tools -> plugins -> downloaded -> add plugins -mbien On 23.04.24 22:09, Tom Rushworth wr

Re: New source files open near to "Output" tab

2024-04-16 Thread Michael Bien
you can probably fix this by moving the output out of the tab group of the files and then the files to the central area where you want them, but if this doesn't work you can always reset the UI with windows -> reset windows. -mbien On 16.04.24 14:29, Daehyun wrote: Hi, I just upgraded to the

Re: Problems with Printing from NetBeans

2024-04-16 Thread Michael Bien
print to html and then print the html with a browser? -mbien On 16.04.24 21:04, Hanley, Chris wrote: Hi, I am new to this user group. I teach at a high school in New York. We have successfully printed from NB printing option. My IMS imaged computers 2 months ago and we get No Print Services Fou

Re: Can;t link src/test/java to package being tested.

2024-04-02 Thread Michael Bien
the exec.mainClass property of pom.xml is the main entry point of your program and becomes relevant if you want to run the project in the shell or once its built. NB can run anything which has a main method or any test simply via right click -> run/debug. It doesn't really care what is in the

Re: Run-Time Error: email Validation project still giving errors

2024-03-12 Thread Michael Bien
On 12.03.24 05:58, Zulfi Khan wrote: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.11.0:compile (default-compile) on project ValidateName3: Fatal error compiling: error: release version 11.0.19 not supported -> [Help 1] Something is wrong in your pom.xml. The javac

Re: [platform] Remove files referred to in update_tracking

2024-03-11 Thread Michael Bien
the native libs should be ok for removal on non-windows systems since DDE is windows specific: https://github.com/apache/netbeans/blob/643b64771c00c24d857773cd4d454c19f40bb57f/ide/extbrowser/src/org/netbeans/modules/extbrowser/NbDdeBrowserImpl.java#L77-L96 -mbien On 11.03.24 14:41, Patrik Karls

Re: No open files after updating

2024-03-04 Thread Michael Bien
unfortunately not. I looked into this a while ago, and the opened files are part of the regular UI state persistence like window positions etc which isn't imported to the next version. (Project groups are imported though since those aren't UI) if you want to live dangerously:  - start your

Re: Missing nb-javac plugin in NetBeans IDE 21

2024-03-02 Thread Michael Bien
On 01.03.24 17:42, Ulf Zibis wrote: Am 01.03.24 um 15:24 schrieb Michael Bien:   - The "force plugin install into shared directories" is not a good idea Why is it provided? For historic reasons and to solve some edge cases. I vaguely remember using this option for a native l

Re: Netbeans 22 does not allow JDK 1.7 or 1.8

2024-03-02 Thread Michael Bien
the case. On 01/03/2024 19:01, Michael Bien wrote: On 01.03.24 18:24, Noel Abela wrote: I am confused about all these versions. How come if you download the latest JRE from Oracle this explains it. The platform manager expects a JDK, not a JRE. The concept of JRE is a bit dated and no longer

Re: Netbeans 22 does not allow JDK 1.7 or 1.8

2024-03-01 Thread Michael Bien
On 01.03.24 22:56, Noel Abela wrote: Thanks again for your input. As you can see from the  attached screenshot I am getting the same error for Java 8. what Java distribution is this you tried to add? if its the one from the link you posted it would be a JRE I believe. Oracle has a separate p

Re: Netbeans 22 does not allow JDK 1.7 or 1.8

2024-03-01 Thread Michael Bien
or a regular repository on linux, NB should automatically add it to the platform manager since it scans some well-known directories. best regards, -mbien On 01/03/2024 16:15, Michael Bien wrote: NetBeans 21 supports projects which use JDKs in the rage 8-21 with limited support for early acces

Re: Netbeans 22 does not allow JDK 1.7 or 1.8

2024-03-01 Thread Michael Bien
NetBeans 21 supports projects which use JDKs in the rage 8-21 with limited support for early access dev builds 22, 23 etc. javac itself dropped support for the 1.7 target in Java 20. So your best bet would be to try NetBeans 17 which used nb-javac based on JDK 19. Although I can't promise that

Re: Missing nb-javac plugin in NetBeans IDE 21

2024-03-01 Thread Michael Bien
On 01.03.24 14:43, Ulf Zibis wrote: Am 29.02.24 um 22:12 schrieb Geertjan Wielenga: The Apache NetBeans 21 binary releases require JDK 11+, and officially supports running on JDK 11, 17 and 21. Thanks for the info. In the meantime I solved the problem still using JDK 18 as follows. - deleted

Re: Netbeans 21 always showing wrong Java dependency for Maven project

2024-02-28 Thread Michael Bien
Hi, On 28.02.24 11:23, Francesco Chicchiriccò wrote: Hi there, I am using Netbeans since 6.0 and still enjoying it as main development platform for Java: nice job! I am experiencing an annoying behavior with Maven projects: even though JDK 21 is correctly reported under project properties ->

Re: Issues/capabilities of the NetBeans GUI builder

2024-02-22 Thread Michael Bien
Hi, not everything has to use GroupLayout. Since you already have three tables in a JPanel, you can let that JPanel use any other layout manager which you prefer for the usercase. And yes, you could also write the code for the panel with the tables in it by hand if that is easier and still a

Re: where have the stream inline hints gone?

2024-02-21 Thread Michael Bien
they have a hotkey now, see: "view -> Show inline Hints". under "options -> editor -> inline hints" you can configure what exactly is toggled on/off. -mbien On 21.02.24 12:59, Pieter van den Hombergh wrote: Gone with the wind? In some earlier netbeans version you could type things like    

Re: NetBeans 19 Performance Issues

2024-02-13 Thread Michael Bien
Hi Blaine, ~260 classes shouldn't cause any performance problems (I assume java classes or is this PHP?). I actually just opened all netbeans modules so that I can run some project wide cleanups, and that would be ~450 projects i think. I haven't timed it but it usually takes about 5mins of

Re: Apache NetBeans 20 released - Java Versions

2023-12-21 Thread Michael Bien
On 21.12.23 13:01, Judi Rastall wrote: One small niggle remains: when I start NB20, it complains it cannot find JDK8 and can it use the default. I click 'yes' and all is well. I have found how to point NB to JDK21 at project level but I cannot find a way to switch this at global level. Is the

Re: GenAI for Netbeans

2023-12-21 Thread Michael Bien
On 20.12.23 21:01, Greenberg, Gary wrote: Are there any attempts to add GenAi, Github Copilot or ChatGPT to Netbeans? a NB ChatGPT plugin would be here: https://github.com/Hillrunner2008/netbeans-chatgpt don't know about any other plugin in that area (which doesn't mean they don't exist of

Re: Apache NetBeans 20 released - Java Versions

2023-12-20 Thread Michael Bien
her OpenJDK site. Cheers, Steve On 18 Dec 2023, at 19:04, Michael Bien wrote: On 18.12.23 18:22, Judi Rastall wrote: I go to my Java installation (which says it is Java v8 update 391), click on check for updates, and it tells me I have the latest version. java

Re: [ANNOUNCE] Apache NetBeans 20 released

2023-12-18 Thread Michael Bien
On 18.12.23 18:22, Judi Rastall wrote: I go to my Java installation (which says it is Java v8 update 391), click on check for updates, and it tells me I have the latest version. java isn't going to update to the next major version on windows. I don't think the newer JDKs have even an updater a

Re: Is there documentation for migrating projects from a previous version of NetBeans to NetBeans 20?

2023-12-15 Thread Michael Bien
Hi, NB 20 (you are using NB 10?!) has the jakarta transformer integrated which might assist somewhat with the migration: https://github.com/apache/netbeans/pull/5847 but if your project is still at J2EE 1.5 level, this certainly won't be possible in one step. It might be best to migrate it to

Re: Cloned and floated window not behaving

2023-12-06 Thread Michael Bien
On 06.12.23 21:06, Ernie Rael wrote: > N views at once make that even more interesting. There are certainly ways > to improve this but I don't think there is a single/obvious way how it should > behave - it is somewhat context dependent. I can't think of a use case where you want a non-focus

Re: Adjusting to monitor resolution

2023-12-06 Thread Michael Bien
you can overwrite the logic with flags, in your case the easiest solution is probably to create two shortcuts for NetBeans, one which opens an instance which is meant to work on your large screen, and one which is meant to work on your lower res screen. netbeans --fontsize 16 changes just th

Re: Cloned and floated window not behaving

2023-12-06 Thread Michael Bien
Hi Mitch, depends. This is a hard problem to solve, since it might be the right behavior in some cases, but not in others. example: ctrl-z will move the view to the change, in some situations this is very useful and exactly what is expected from the IDE, in other cases (e.g reverting automat

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

2023-12-05 Thread Michael Bien
On 06.12.23 00:32, Owen Thomas wrote: This matrix is just doing my head in, because all I can gather from the page disclosed is a mechanism - I don't understand why the mechanism needs to exist in the first place. because gradle uses kotlin and groovy as the config file format language, langu

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

2023-12-03 Thread Michael Bien
gradle 8.4 release notes:  > Java 21 is now supported for compiling, testing, and running such projects. gradle 8.5 release notes:  > Gradle now supports running on Java 21. (I fell for it too the first time I read it, Gradle 8.4 can not run on Java 21) -mbien On 04.12.23 02:20, Erni

NB embedded tomcat, was: Re: Slack?

2023-12-03 Thread Michael Bien
the internal web server you can see listed in the services window is used for NetBeans internal features. For example for serving local javadoc when you open it in a browser. It is a cached tomcat instance essentially. https://github.com/apache/netbeans/pull/5530 also please use an appropria

Re: [platform] RELEASE200

2023-11-27 Thread Michael Bien
you are probably experiencing this issue: https://github.com/apache/netbeans-mavenutils-nbm-maven-plugin/pull/122/ (NB 20 is also not released yet, the staged repositories are not permanent) regards, -mbien On 25.11.23 07:58, Patrik Karlström wrote: So I'm testing my maven platform applications

Re: Netbeans with Bookworm

2023-11-08 Thread Michael Bien
On 08.11.23 14:59, Neil C Smith wrote: On Wed, 8 Nov 2023 at 13:34, Phil L wrote: Is there a version of NB that runs in Bookworm? I'm thinking of a new Pi5, but it only runs Bookworm and other IDE's do not run in Bookworm. 32bit or 64bit? as sidenote: raspis can run 64bit OSes. My old rasp

Re: Two finger swipe left - right makes editor go wild

2023-10-28 Thread Michael Bien
On 28.10.23 14:09, Laszlo Kishalmi wrote: On 10/28/23 04:52, Neil C Smith wrote: On Sat, 28 Oct 2023, 12:29 Neil C Smith, wrote: On Sat, 28 Oct 2023, 11:59 Laszlo Kishalmi, wrote: It would be good if somebody could test the Mouse Button layouts on Window

Re: Git hub master branch

2023-10-14 Thread Michael Bien
. On Sat, 2 Sept 2023 at 22:02, Michael Bien wrote: Hi, the initial branch name seems to be hard coded atm: https://github.com/apache/netbeans/blob/0322fce7c3f5c9335f2bcb00e5751de81fdb7ffb/ide/git/src/org/netbeans/modules/git/api/Git.java#L108 Better behavior would be to read out

Re: [**EXTERNAL**] Re: Apache NetBeans and Apache Struts 1?

2023-10-10 Thread Michael Bien
Hi Dill, without looking into it, its likely lib wrapper modules for ant projects, so that ant projects can depend on libs without having to setup repositories. Those wrappers can be also updated or replaced by the user and work like a local repository. (you can see the list via tools -> libr

NetBeans sample repo, was: JavaSE Deployment Tutorial Sample Code replacement

2023-09-09 Thread Michael Bien
Hi Stroud, I think the NetBeans project will need a git repo for sample code sooner or later. I cc this to the dev list, this might be something we can set up. best regards, michael On 09.09.23 20:30, Stroud Custer wrote: I put together a replacement for the sample code that is missing from

Re: Git hub master branch

2023-09-02 Thread Michael Bien
Hi, the initial branch name seems to be hard coded atm: https://github.com/apache/netbeans/blob/0322fce7c3f5c9335f2bcb00e5751de81fdb7ffb/ide/git/src/org/netbeans/modules/git/api/Git.java#L108 Better behavior would be to read out the 'init.defaultBranch' git property and use it if it was set. Fe

Re: Static Code Analysis Tutorial Review - FindBugs plugin not available

2023-08-27 Thread Michael Bien
Hi Stroud, the last pieces of FindBugs support were removed in NetBeans 13 (#3455) since it caused issues back then and wasn't maintained. FindBugs project itself is also EOL and got replaced by SpotBugs as already mentioned. The tutorial is out of date. Currently, NetBeans supports the alrea

  1   2   >