Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been trying to add tomahawk library to a JSF app. I click on project -> BuildPath -> Libraries -> Add external Jars. But when I try to deploy there's a message that says that there's no taglib for t.

So, what's the correct way of adding a library?

share|improve this question

2 Answers

up vote 1 down vote accepted

The correct way of adding webapp-specific libraries is just dropping the JAR files in /WEB-INF/lib. That's all. Eclipse is smart enough to detect changes in the /WEB-INF/lib and will take appropriate actions automagically. You really don't need to fiddle with Build Path in project's properties. It would possibly make things worse. Undo all changes which you made in the Build Path.

share|improve this answer

Are the libraries also part of your web-inf/lib ?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.