1

we started with static code analysis and I would like to see how we compare with other projects. Now I am aware I could go out and run tools for different OS projects, but I was curious if there is a repository for this data. such as cyclomatic complexity, code coverage, size of methods, size of classes, scope nesting, etc

thanks almir

zebra
  • 1,330
  • 1
  • 13
  • 26
  • Coverity did scan different source projects with their tool a few years back: https://scan.coverity.com/ However I don't know whether they also checked for the code metrics you mentioned. On the other hand it isn't difficult to run Findbugs, PMD or the like on different projects yourself... – Lonzak Feb 04 '14 at 09:26

2 Answers2

1

For Java OS projects a free monitoring system with some metrics is available here: http://opensource.quality-gate.com/

pepe
  • 61
  • 1
  • 2
0
  1. Ohloh.net has a few of the metrics you mentioned
  2. FLOSS Metrics may have some
  3. FLOSSmole - includes data from the now-defunct SourceKibitzer though it's a little old (2007), as well as the same metrics run on Debian packages in 2011
  4. Sourcerer may have some
Megan Squire
  • 1,001
  • 7
  • 18
  • sourcer does not work, at least I get 404 for the search page, others are quite old and there could be more data. but at least its start :). thanks – zebra Feb 05 '14 at 13:12