This question might be asked before but I couldn't solve my problem with those explananations. I want to start using google apis in my Eclipse IDE. I've downloaded a sample from google codes. (latitude-json-oauth-sample). It requires to import com.google.api.client.auth.oauth. From where I can find and how import those to this project? I've installed maven and mylyn plugins, and I thought that with these plugins I would be able to download all dependencies but I couldn't make it. Thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The artifacts are available in the central maven repository. Add following to your pom file:

<dependency>
    <groupId>com.google.api.client</groupId>
    <artifactId>google-api-client-auth</artifactId>
    <version>1.2.3-alpha</version>
</dependency>
link|improve this answer
Hi Kees, After adding this to pom file, what should I exactly do to run the project? – user675844 Aug 21 '11 at 13:26
mvn clean compile on the command line; in Eclipse "Maven / Update dependencies" – Kees de Kooter Aug 21 '11 at 17:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.