0

I see that Bluecove is open source, but there aren't any .pro files in sources. How can I open sources in eclipse and debug?

IKM2007
  • 716
  • 1
  • 8
  • 31

1 Answers1

1

In Eclipse you can right-click on project, and there is Java Build Path, there you have your dependencies.

Each dependency can be unfolded and there is "Source attachment", you can attach your source files there and then debug it.

Michal Borek
  • 4,584
  • 2
  • 30
  • 40
  • Seems I can add only *.jar and *.zip files, but sources that I downloaded are in tar.gz archive. I change it to zip, but its not help. – IKM2007 May 05 '13 at 08:53
  • 1
    Check whether in the zip files are properly stored, so that package folder (e.g. "org") is in the root of the archive. – Michal Borek May 05 '13 at 08:55