Reputation: 882
I know SonarQube analyses both source code and bytecode (jars and .class files).
Does it only analyse the jar of the "main" project, or does it also analyse the jars of its Maven dependencies?
Upvotes: 1
Views: 156
Reputation: 22804
The jars aren't analyzed. The source code and compiled classes of your project are analyzed, and during that analysis, the project's dependencies are used to get a little more information about the calls your project is making. But the jars aren't analyzed.
Upvotes: 3