Number of lines of code in a RAD / Eclipse workspace

How to find the number of lines of code in RADor Eclipsein the entire workspace (all projects)

+3
source share
1 answer

You can:

  • add plugin like Eclipse Metrics
  • create a project that depends on all other projects in the workspace
    (Java Build Path, tab " Projects", for adding " Required projects on the build path")
    Do not worry about compilation: even if this global project does not compile, it will provide you with the necessary information.

Java build path

Summary stats

+2

Source: https://habr.com/ru/post/1733000/


All Articles