google data libraries in maven
Posted: September 15, 2010 Filed under: java, programing | Tags: com.google.gdata, gdata, google, google data libraries, java, maven2 2 CommentsI wanted to create new project and used google data libraries (com.google.gdata…) and connect with maven2.
Even though Google has these libraries as opensource, it is not in maven repository. Anyway there is project which added these google libraries into maven into google code.
Here is example of pom.xml (repository & libary dependency)
<project> .. <repositories> <repository> <id>mandubian-mvn</id> <url>http://mandubian-mvn.googlecode.com/svn/trunk/mandubian-mvn/repository</url> </repository> </repositories> ....... <dependencies> <dependency> <groupId>com.google.gdata</groupId> <artifactId>gdata-calendar-2.0</artifactId> <version>1.41.3</version> </dependency> <dependency> <groupId>com.google.gdata</groupId> <artifactId>gdata-core-1.0</artifactId> <version>1.41.3</version> </dependency> </dependencies> .... </project>
As you can see you can add google libraries according your needs. If you don’t know the full name and version of the library you want to use – check it here .
[…] Weblog Just another blog about everything « google data libraries in maven google code with git […]
Thanks. Just what I needed to get my build running.