-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Recompile at JDK 1.6 #197
Comments
a PR has already been accepted for this. You can close this, the change should be in the next release. |
Fixed in https://github.com/stleary/JSON-java/releases/tag/20160212. Let us know if there are an problems. Maven release pending. |
Appreciate the speed with which this was resolved and happy to confirm that having updated to the later maven version that all is working. |
Great, thanks for confirming it is working. |
Including JSON-java using maven:
for a project that is to be deployed to IBM WebSphere Application Server (WAS) on versions
8.0
and8.5
, so require code compiled forJava 1.6
.Currently, JSON-java is compiled for
1.7
so it does not load. Found two classesorg.json.JSONObject
andorg.json.JSONArray
that would not compile at1.6
due to the use of multi-catch parameters. With these two adjusted, all compiled at1.6
and the code works in WAS.Would it be possible to make these changes permanent and release (through Maven at least) a version compiled at
Java 1.6
?The text was updated successfully, but these errors were encountered: