Java Questions
Java Questions

Reputation: 7953

how to download a project which is available in Google svn

I want to download this project in to my eclipse indigo. How to do this.

I tried to go to this link and I am able to see the project but it is quite difficult to download the same.

how to get it downloaded using eclipse indigo.

Upvotes: 3

Views: 92

Answers (1)

Ivan Borisov
Ivan Borisov

Reputation: 413

Install SVN plugin for eclipse and do checkout or just

svn checkout http://project4example3.googlecode.com/svn/trunk/ project4example3-read-only

in command line like Google code suggests.

Upvotes: 3

Related Questions