-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Address the deprecation of AbstractJavaLaunchConfigurationDelegate getClasspath(ILaunchConfiguration) #60
Comments
@szarnekow this is the mwe jdt deprecation issue |
I'd resort to reflection: use getClasspathAndModulepath, if available, fallback to getClasspath otherwise. Assign the module path and the classpath from the two dimensional result array to the VM runner config. What do you think, @cdietrich ? |
sounds feasible. the downside would be that we would no longer recognize if they change it again. |
I prefer raising the lower bound for JDT and use |
the problem is that we set the min mwe version in xtext.sdk |
of course we could keep the old runtime dep and use a newer target platform. |
we had a closer look. |
=> we can use the new method only |
or
|
|
moved to 2.11.3 |
JDT wants to deprecate
org.eclipse.jdt.launching.AbstractJavaLaunchConfigurationDelegate.getClasspath(ILaunchConfiguration)
we should address this.
we also should investigate what of customization is still needed at all
(affects mwe and mwe2)
The text was updated successfully, but these errors were encountered: