BRabbit27
BRabbit27

Reputation: 6623

Add JSF-Tomahawk library to Eclipse

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?

Upvotes: 0

Views: 693

Answers (2)

BalusC
BalusC

Reputation: 1108537

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.

Upvotes: 1

r0ast3d
r0ast3d

Reputation: 2637

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

Upvotes: 0

Related Questions