In eclipse, ./gradlew is generating JavaSE-1.8 instead of using my jdk1.8.0_73. What jdk is this because I discovered lately that it seems like it is 'not' my jdk1.8.073 for the following reason.....
I installed alpn.jar from jetty in jre/classes (I unzipped the classes there since the sun.boot.class.path says that directory is in the bootclasspath AND then I don't have add -Xbootclasspath to every tool in the world on my computer).
When I ./gradlew eclipse, my projects using this jar break and then when I remove JavaSE-1.8, and then re-add jdk1.8.0_73, all is fine and it compiles in eclipse and intellisense works and everything.
Soooooo, what is JavaSE-8 and how to remove it so when ./gradlew eclipse runs, it uses whatever default my eclipse is pointing to which in my case is jdk1.8.0_73.
One last question, why is JavaSE-1.8 not even listed on Installed JREs?
This is all quite confusing.