[GRADLE-3100] eclipse plugin always uses default JRE container rather than the one for appropriate execution environment Created: 04/Jun/14  Updated: 10/Feb/17  Resolved: 10/Feb/17

Status: Resolved
Project: Gradle
Affects Version/s: None
Fix Version/s: None

Type: Bug
Reporter: Kris De Volder Assignee: Unassigned
Resolution: Won't Fix Votes: 5


 Description   

The eclipse plugin doesn't add a convenient JRE container when JVM levels.

For example, you have this in 'build.gradle'

sourceCompatibility = 1.6
targetCompatibility = 1.6

When the eclipse metadata is generated it correctly configures compiler source and target levels but it still attaches a JRE container that uses the workspace default JRE rather than a container of the appropriate level.

I.e. the classpath will contain this:

<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER" exported="true"/>

Rather than this:

<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6" exported="true"/>

That means, depending on what workspace default a user has setup the code may get compiled against the wrong version of the Java libraries.

One can of course workaround this by doing something like this:

eclipse {
    classpath {
         containers.remove(''org.eclipse.jdt.launching.JRE_CONTAINER')
         containers 'org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6'
    }
}

But it seems natural for the JRE container to follow source / target levels, especially if they are set both to the same thing.

If source!=target level I'm not sure which one ought to be used. It seems logical to me to follow the 'target' rather than source, because you'd want to compile against the 'lowest' environment you expect your code to run in.
However, the right thing is probably to do whatever is consistent with running the build on the commandline.



 Comments   
Comment by Kris De Volder [ 04/Jun/14 ]

This link contains useful information about 'valid' values for the Execution Environment names:
https://wiki.eclipse.org/Execution_Environments

E.g these are all valid values for standard JREs from 1.1 -> 1.7.
JRE-1.1
J2SE-1.2
J2SE-1.3
J2SE-1.4
J2SE-1.5
JavaSE-1.6
JavaSE-1.7
JavaSE-1.8

Comment by Benjamin Muschko [ 15/Nov/16 ]

As announced on the Gradle blog we are planning to completely migrate issues from JIRA to GitHub.

We intend to prioritize issues that are actionable and impactful while working more closely with the community. Many of our JIRA issues are inactionable or irrelevant. We would like to request your help to ensure we can appropriately prioritize JIRA issues you’ve contributed to.

Please confirm that you still advocate for your JIRA issue before December 10th, 2016 by:

  • Checking that your issues contain requisite context, impact, behaviors, and examples as described in our published guidelines.
  • Leave a comment on the JIRA issue or open a new GitHub issue confirming that the above is complete.

We look forward to collaborating with you more closely on GitHub. Thank you for your contribution to Gradle!

Comment by Benjamin Muschko [ 10/Feb/17 ]

Thanks again for reporting this issue. We haven't heard back from you after our inquiry from November 15th. We are closing this issue now. Please create an issue on GitHub if you still feel passionate about getting it resolved.

Generated at Wed Jun 30 12:39:58 CDT 2021 using Jira 8.4.2#804003-sha1:d21414fc212e3af190e92c2d2ac41299b89402cf.