I tried running the quickstart-sample, and this dependency:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-drive</artifactId>
<version>v2-rev78-1.15.0-rc</version>
</dependency>
from Drive wiki API page
Yet when I try to compile the code com.google.api.client.json.jackson.JacksonFactory;
is missing.
To verify this you just need to do Step 2 & 3! Where can I find this class or how can I replace it in the sample?
Jackson library can be found at http://repo2.maven.org/maven2/com/google/http-client/google-http-client-jackson/
For July 7, last version can be obtained by Maven
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client-jackson</artifactId>
<version>1.15.0-rc</version>
</dependency>
You may also need
<dependency>
<groupId>com.google.oauth-client</groupId>
<artifactId>google-oauth-client-java6</artifactId>
<version>1.15.0-rc</version>
</dependency>
Use this class for JacksonFactory instead of the previous one.
com.google.api.client.json.jackson2.JacksonFactory
Since version 1.11, jackson library has been moved out to separate jar to provide developers better choice of versions of each library. Please check readme.html of zip file you downloaded from google-api-java-client and you can check which specific jar file you want to include in your project.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With