Posts

Showing posts from February, 2014

"Subversion Native Library Not Available" Error on Eclipse (with Subclipse) Ubuntu

Image
Do you use Eclipse and Subclipse ? Do you encounter following error: "Subversion Native Library Not Available" Now if you go to Eclipse -> Preferences -> Team -> SVN, you will see that "JavaHL (JNI) is Not Available" for SVN interface. The solution is to install JavaHL . After installing, we need to make sure that Eclipse can see the relevant libraries. For that I just created soft links. sudo apt-get install libsvn-java sudo ln -s /usr/lib/x86_64-linux-gnu/jni/* /usr/lib/ Now restart Eclipse and you should be able use Subsclipse with JavaHL.