Is it possible to Build NetBeans 13 #5218
-
Is it possible to build NetBeans 13 with the following: Java version:
Gradle version:
I would like to build NetBeans 13 to use a prepackaged Gradle 6.8.2 and Java 8 (32) by default. If it is possible, what flags do I have to set? What would I need to change or do to complete it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
i don't know if it was still possible to build NB 13 on JDK 8, but you could give it a try and see how much of it is buildable. JDK 11 is the current requirement for NB 16. Simply check out the github tag for 13 and follow the usual build instructions:
NetBeans does not package a JDK. There are community packages available though which do package a JDK via installers for example. They are linked from the download page.
i suppose this stands for 32bit? We don't really test on 32bit JVMs since most vendors discontinued them and the main usecases are gone since the introduction of compressed oops on 64bit JVMs. It may or may not work. NB 16 can also use other gradle/maven versions then those which are bundled with it by default you sure your endeavor is actually needed? Some bugfixes were recently deployed via 16-u1 |
Beta Was this translation helpful? Give feedback.
i don't know if it was still possible to build NB 13 on JDK 8, but you could give it a try and see how much of it is buildable. JDK 11 is the current requirement for NB 16.
Simply check out the github tag for 13 and follow the usual build instructions:
https://github.com/apache/netbeans#building-netbeans
NetBeans does not package a JDK. There are community packages available though which do package a JDK via installers for example. They are linked from the download page.
i suppose this stands for 32bit? We don't really test on 32bit JVMs since most vendors discontinued them and …