Reputation: 4170
I just came across JASYPT library and I wanted to try it out. I have googled a fair bit but failed to find a guide to add new Java libraries. I have OS X 10.7, which directory do I unpack the Jasypt library into?
Jasypt: http://www.jasypt.org/
EDIT: I use Eclipse for Java Dev, I just created a new project and want to integrate this library into it.
Upvotes: 0
Views: 1195
Reputation: 9434
You can change your build path following these steps:
Upvotes: 1
Reputation: 25370
In Eclipse it is: Properties > Java Build Path > Libraries. (Contextmenu of your project)
There you add jasypt-1.9.0.jar
if you use Java 5 or older you also have to include icu4j-3.4.4.jar
(Versions may differ from yours)
Upvotes: 2