If you use AutoBeans, why do you need org.json?
Anyway, if you need org.json, add it as a dependency (download the JAR, or add the dependency to your pom.xml or build.gradle or ivy.xml or whatever you're using) and use it (and comply with its license).
Anything in c.g.g.thirdparty can change without notice between GWT versions, so it could very well disappear in the next version of GWT.
2) com.google.gwt.json.client.JSONObject
This is only usable in client-side code; won't work where you used to use org.json.
3) com.google.gwt.dev.json.JsonObject
Isn't in gwt-servlet.jar AFAIK, so won't be available at runtime.
Any Hints here?
There's also elemental.json but it's still experimental.
No, really, if you're happy with org.json, then just continue using it; all you have to do is add it to your classpath.