user2176576
user2176576

Reputation: 756

SVNKit not installing using eclipse

I did the following on my Eclipse Juno, windows 32 bit machine:

Upvotes: 0

Views: 1063

Answers (1)

mliebelt
mliebelt

Reputation: 15525

To integrate SVNKit in your Java program, you should do the following steps:

  1. Go to the Download page of SVNKit.
  2. Decide which Subversion version you want to support, in your case, 1.7.11 should be the best fit.
  3. Download the standalone version which contains the whole libraries you will have to include into your program.
  4. Decide where to store these libraries, so you have access to them during development. Often people use here a sub-directory libs in their source code.
  5. Only store the content of the lib directory into that location. The other parts may be useful as well, and your are able to see the source code of SVNKit by referencing the Zip-File you have downloaded, but that is another story.
  6. Try out one of their examples to see if your installation is correct and does work.

At the end, you have to solve the problem as well how to deploy your program, so that users may use it, but this could be addressed in another question :-)

And of course, the recipe would be different, when you want to use Maven for development in Java.

So your misunderstanding was, that when you develop in Eclipse, you have to take the Eclipse plugin of SVNKit (which is not what you need here).

Upvotes: 1

Related Questions