Google Calendar API: java.lang.ClassNotFoundException: com.google.common.collect.Maps

google-calendar-api

Solution

Google collections, now known as Guava.

Problem

I am creating a fairly simple Java client that connects to my account and gets all the events. Here I am getting an exception saying : ``` java.lang.ClassNotFoundException: com.google.common.collect.Maps ``` Could anyone tell me which JAR am I missing and moreover where to download it from?

Original source