Re: hashCode: same every run?

2021-05-06 Thread Shaun Flynn
I ran into this, thinking it would be the same per execution, but it does not work like that. If you create a for loop doing something like... String test = "Hello World!"; for(i = 0; i < 100; i++) { System.out.println(test.hashCode()); } You will get 100 identical values. Run it again, you wil

Maven Compilation Issue

2020-07-11 Thread Shaun Flynn
Hello there, I migrating my Java 11 Modular Project to work with Maven in Netbeans 12.0: I have split it down into the projects shown. DT.FrontEndFX depends up on DT.Core and DT.Reader, both of which build fine. When I come to build DT.FrontEndFX, I get a run of "Can not find symbol" errors whic

Maven Modular Projects with Java 11

2020-07-06 Thread Shaun Flynn
Hello there folks, First time poster, so please be gentle :) I have recently gained the confidence to stsrt using Maven after learning how to use the module system in Java 11. My question is: is there a way to create a Maven project which uses the Java Module system? I do have a work around but

Issue building Netbeans 9.0 using JDK 8 or JDK 9

2018-03-09 Thread Shaun Flynn
Hello there folks, I am trying to bulid Netbeans 9.0 from "https://github.com/apache/ incubator-netbeans" using Git and Ant. I have tried using Java 8 and Java 9 but it does not build. When I get to the Ant stage, javac complains of the following. Can anyone help? C:\Users\user>CD incubator-net