On Buildship 1.0.9.v20160211-1429, default project settings for Java Compiler (JDK) are overwritten.
In gradle.prefs I had a null value for connection_java_home and the project settings were being used. This worked fine until the latest Buildship update. Now, no matter what I set in the project, it gets overwritten.
This last change introduced many errors: âAccess restriction: ⌠is not API (restriction on required library ⌠rt.jar)â. I solved this by selecting the JDK, instead of using the âExecution environmentâ.
@donat@st_oehme
even using connection.java.home=C:\\Program Files\\Java\\jdk1.6.0_43 on org.eclipse.buildship.core.prefs sets the âExecution environmentâ JavaSE-1.6.
So, there is no way of setting an alternate JRE/JDK.
Update: using gradle.properties with org.gradle.java.home=C:\\Program Files\\Java\\jdk1.6.0_43
is not working either.
We are currently making use of execution environments only. If you want your special VM to be used, set it as the default VM for that execution environment.
There is also an enhancement request that will allow selecting a JVM by name. This has somewhat lower priority though, as it is not very portable. It would mean that every developer on the team would have to set up Eclipse with precisely the right VM names.
Also there is no need to tinker with the java.home setting. It was never meant to specify the JDK to use for the Eclipse project. Itâs just the JDK that the Gradle build itself will run on.
Changing the default VM for the Execution environment does not solve the âAccess restrictionâ error messages from eclipse. So, using that is not exactly the same as setting the Alternate JRE.
Anyway, I changed the few references that I had to sun.* to solve that and Iâm using what Gradle sets (Execution environment > JavaSE-1.6).
Is there any reason to only support execution environments? By doing so, using gradle for creating eclipse projects using JavaFX is impossible since the execution enviroment sets some access rules prohibiting the use of the JavaFX bundled in the ext folder of the Java 8 installation. Manually switching in eclipse from execution enviroment to workspace default JRE solves this issue but itâs there again after regenerating the eclipse project from gradle.
The reason is that exposing the required information via the Tooling API takes a significant amount of time, and so far we havenât seen a reason to prioritise this feature. The select a JVM by name feature would solve your problems, is that correct?
I am having issues with the âAccess restrictionâ error messages in eclipse as well and I canât seem to fix them when using buildship in eclipse. Could you share how you got around this with buildship/gradle?
What you pasted is the default, sourceCompatibility = 1.8 would be enough in that case.
The problem is that in Eclipse JREs are configured to forbid access to Sun-internal APIs by default. âJavaSE-1.8â is a predefined execution environment that you cannot change in Eclipse. Instead, youâll have to create your own JRE and give it a name. Then you can use that name in javaRuntimeName.
You can also shut off those warnings in Eclipseâs compiler settings if you want. But they are generally valid. If you access those internal APIs, your code is not guaranteed to run on all JREs.
We are using javafx for an internal testing tool gui, so we are ok with it not running on all JVMs.
With the gradle âeclipseâ plugin we got around this with this by doing something like below, but this breaks buildship by removing the jvm somehowâŚ
Please have a look at the Buildship 1.0.18 release notes. You can do this customization much more straightforward, without XML mangling and in a way that Buildship will understand
Exactly what i was looking for!! Here is the slightly modified snippet from the release notes as it applies to javafx.
Really great documentation⌠thanks for such a great product!!