0

I am trying to get this: http://code.google.com/p/geocoder-java/ into eclipse to work with the geocoder API. I have the SVN plugin already installed and now I am wondering what I have to do to get it into one of my projects so that I can use it as a library.

Kris
  • 768
  • 1
  • 8
  • 19

2 Answers2

0

From the Source page of the project:

Non-members may check out a read-only working copy anonymously over HTTP.

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

Add the geocoder directory to your list of SVN directories and use the provided userid and a null password.

Community
  • 1
  • 1
Gilbert Le Blanc
  • 50,182
  • 6
  • 67
  • 111
  • yes, I already have it in my eclipse project. But I am not sure what I have to do to actually use it. Right now I added the SVN directory with all sub-directories into one of my existing projects. But now what? If I make a new main class and paste the example form the first page of source site it just sayis that the packages don´t match and I can´t import the necessary classes. – Kris May 22 '12 at 17:02
  • @Kris: Use Eclipse to make a jar file from the geocoder project, and include that geocoder jar file in your project classpath. – Gilbert Le Blanc May 22 '12 at 18:20
0

If you already downloaded and built the .jar file, you just have to add it as an external library.

Similar to Here

Community
  • 1
  • 1
Mike
  • 3,186
  • 3
  • 26
  • 32