-
-
Notifications
You must be signed in to change notification settings - Fork 20
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
Support configuration of target JDK level #23
Comments
From my experience, it is best to just hardcode 1.7 and ignore the config file, since too many people are not able to get it right. |
@krasa : Thank you for the advance. I will hard-code it. If a user wants a different level he has to configure it in its configuration file. |
I actually override what the user wants, since he does not even know that he has 1.5 in his config and then complain that it does not work. |
Update: For formatting of 1.4 code ( package can be named 'enum') is needed 1.4 level, so I started to use a project configuration, which people normally use in the IDE... |
fixed in 1.10.2 |
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.source=1.7
The text was updated successfully, but these errors were encountered: