I want to create a web application running on Tomcat 7.0 with JRE JavaSE-1.6 on osx 10.8. I am using a tutorial from the developers site and the error occurs when I try to call
I just fixed this by changing the following lines:
Original: import com.google.api.client.json.jackson.JacksonFactory;
import com.google.api.client.json.jackson.JacksonFactory;
Modified: import com.google.api.client.json.jackson2.JacksonFactory;
import com.google.api.client.json.jackson2.JacksonFactory;