java.lang.NoClassDefFoundError: org/json/JSONObject [duplicate]

Please add the following dependency
http://mvnrepository.com/artifact/org.json/json/20080701

<dependency>
   <groupId>org.json</groupId>
   <artifactId>json</artifactId>
   <version>20080701</version>
</dependency>

Leave a Comment