Referenced documentation:
https://code.google.com/p/google-api-java-client/wiki/APIs
Please describe in detail the wiki documentation request:
The current Maven snippet for Calendar for example looks like this:
<project>
<repositories>
...
<repository>
<id>google-api-services</id>
<url>http://google-api-client-libraries.appspot.com/mavenrepo</url>
</repository>
...
</repositories>
<dependencies>
...
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-calendar</artifactId>
<version>v3-rev35-1.14.1-beta</version>
</dependency>
...
</dependencies>
</project>
But now that we're using the central Maven repository, we should remove the
<repositories> section, e.g.:
<project>
<dependencies>
...
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-calendar</artifactId>
<version>v3-rev35-1.14.1-beta</version>
</dependency>
...
</dependencies>
</project>
The only tricky part to this is identifying the correct <version> to use based
on what's actually found on the central Maven repository.
Original issue reported on code.google.com by yan...@google.com on 2 Apr 2013 at 4:09
Original issue reported on code.google.com by
yan...@google.com
on 2 Apr 2013 at 4:09