I needs to use JSONObject library in my Eclipse plugin project for handling JSON data. But required library is not available in server SDK file
The
org.json.JSONObject
library is not included by default in the ELM Server SDK 7.0.2 SR1, but it needs to be used in the Eclipse plugin project for working with JSON.
For example:
JSONObject jsonObject = new JSONObject();
jsonObject.put("name", "John Doe");
jsonObject.put("id", 30);
What is the alternative way to include and use the org.json.JSONObject library in an Eclipse plugin projects ?