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

2024-08-26 Thread Michael Bien
ok. Well you can't really expect such old releases to work on JDKs they were never tested on. The first apache release was 9.0 btw. Stick to JDK 11 or 8 and old builds should work, or use a more recent NB release as your dependency. -mbien On 26.08.24 07:35, Rafał Ziółkowski wrote: You are r

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

2024-08-23 Thread Michael Bien
if you open the pom.xml from mavenproject8-parent and take a look at the netbeans.version property, what value does it have? it should say RELEASE220. one explanation for this could be that you are trying to build against RELEASE90 or something like that - this would fail due to pack200. -mb

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