Fazal
Fazal

Reputation: 3051

Eclipse find which files reference this jar

We have a lot of jars which have been added over a period of years to the project and their usage has not been documented anywhere. I want to figure out references of any class in the jar in java or jsp files.

Now for our new jars we don't have this issue as we use Maven and it helps us maintain dependency etc much better. But I am trying to determine some of the old jars

Is there any way in Eclipse, or any other tool, to do this?

Upvotes: 3

Views: 5738

Answers (1)

zengr
zengr

Reputation: 38909

One way which I can think of:

  1. You can use Relief to get a view of your whole java project. I haven't used it though, but have heard good things about it.

Update:

Finding unused jars used in an eclipse project

Upvotes: 2

Related Questions