danny.lesnik
danny.lesnik

Reputation: 18639

Debugging Jar file in eclipse

I'm debugging my application and I see that I have an exception in jar file which is built from completely separate Java project. I checked out this project from SVN.

How can I attach this project in Eclipse to my current project and debug this code as well?

Upvotes: 1

Views: 1196

Answers (1)

Ali
Ali

Reputation: 12684

You'll have to create a dependency of one project on the other.

Right Click on your project name > Properties > Java Build Path > Projects

Just make sure that both projects are in the same workspace.

Upvotes: 6

Related Questions