user2763361
user2763361

Reputation: 3919

How to find which build paths a project is on

Suppose I have a Java project in Eclipse called ProjectA. I have 50 other projects and I want a list of projects that have ProjectA as part of their build path.

How do I get such a list?

Upvotes: 0

Views: 29

Answers (1)

Jay
Jay

Reputation: 9479

One way is - from Eclipse menu > Search > File, do a search as per this screen

enter image description here

Or if you use Maven, do a search for 'ProjectA' in all pom.xml

Upvotes: 1

Related Questions