Analyzing projects for dependencies (SCA)
SonarQube can analyze your projects for dependencies and identify dependency risks.
Advanced Security is available in SonarQube Cloud as an add-on starting in the Enterprise Plan.
With Software Composition Analysis (SCA), SonarQube analyzes your built project and returns information on:
vulnerabilities in your third-party open source dependencies
where your open source dependencies may conflict with your organization’s license policies
Here are things to check out for to ensure that you get fast and accurate dependency analysis.
Enabling the SCA service
By default, SCA is enabled for your organization when SonarQube Advanced Security is active.
You can choose whether all projects will be scanned using SCA by default. To do this, go to your organization and choose Administration > Organization Settings > Advanced Security, where you can adjust the Enable SCA checkbox. If you disable dependency analysis by default, you will need to enable analysis on a project-by-project basis at the scanner level by passing sonar.sca.enabled=true
as an analysis parameter.
Supported languages and package managers
SonarQube evaluates your third-party open source code usage by matching dependencies defined in your project’s dependency files to known open source code on upstream package managers. It currently supports the following languages, package managers, and package manager files:
Language
Package manager /Build tool
Package repository
Manifest file names
Lock file names
C#
NuGet
*.csproj
Project.json
*.nuspec
packages.lock.json
project.assets.json
Project.lock.json
paket.lock
Ensure the analysis is run in an appropriate environment
To correctly analyze both your direct and transitive dependencies on projects where there is not a lockfile that contains all dependencies, SonarQube executes commands using your build tools to get a full dependency list.
Note on security
To run a dependency analysis, the SonarQube scanner might install the dependencies required to build your application. This could pull in untrusted artifacts, similar to while you're building the application. Ensure the analysis will run in a secure environment before proceeding.
Notes on specific build tools and language ecosystems
Maven
The Maven binary (mvn
) or maven wrapper (mvnw
) must be located in the project directory, the manifest file’s directory, or in the execution path.
Gradle
The Gradle binary (gradle
) or Gradle wrapper (gradlew
) must be in the project directory, the manifest file’s directory, or in the execution path.
pip
The analysis must be run with the same Python runtime that your application is built on. The SonarQube analysis will create a virtual environment to resolve dependencies, and a C compiler and development libraries may be required, based on your python dependencies.
Go
The go runtime that matches the version in go.mod
must be present.
Internal artifact repositories
If your application build configuration includes internal or private artifacts, the analysis process must have network access to your artifact server.
If the analysis is not run in the proper environment, it will cause degraded analysis results and potential analysis failures. You can see more information in analysis warnings in the UI and in the scanner log. See Troubleshooting for some common scenarios.
Ensure the analysis includes the appropriate files
The SCA analysis recursively searches for appropriate package files for your project. In some cases, this may analyze more files than what your project actually uses. Common cases to look out for include:
Package manager files in test code and data directories
If you have package manager files present in test directories, ensure these locations are properly excluded from analysis. This can be done in multiple ways:
Add paths to the common
sonar.exclusions
configuration option. Example:sonar.exclusions=“tests/**”
.Use the specific
sonar.sca.exclusions
configuration option. Examplesonar.sca.exclusions=“tests/**”
.As long as SonarQubes SCM support is enabled (the default), add the paths to a source control ignore file, such as
.gitignore
.
Automatic analysis projects are not supported
Dependency analysis is not performed on projects that use automatic analysis.
Customizing the dependency analysis
The following parameters influence the results of the dependency analysis.
sonar.sca.enabled
Boolean
true
Indicates whether to perform Software Composition Analysis (SCA) on this project. Set it to false to disable SCA for this project.
sonar.sca.exclusions
String
A comma-separated list of global patterns of paths to exclude as part of analysis.
For example, to ignore all manifests under the tests/ and fixtures/ directories, set:
sonar.sca.exclusions = "tests/**, fixtures/**"
sonar.sca.allowManifestFailures
Boolean
true
When performing analysis, SonarQube attempts to run your build tools (such as Maven or Gradle) to create a full dependency graph.
By default, SonarQube does not fail the analysis if these tools fail, and returns information on a limited set of dependencies. Set this parameter to false to force a failure in this scenario.
sonar.sca.goNoResolve
Boolean
false
Disables automatic generation of a Go lock file. This results in degraded dependency information.
sonar.sca.mavenNoResolve
Boolean
false
Disables automatic generation of a Maven lock file and dependency graph file.
This results in degraded dependency information.
sonar.sca.mavenForceDepPlugin
Boolean
true
Ensures Maven Dependency Plugin is installed even when it’s not available in the environment.
sonar.sca.mavenIgnoreWrapper
Boolean
false
Disables a search for a Maven wrapper script mvnw.
Set this to true if the default Maven wrapper in your PATH
is not functioning.
sonar.sca.mavenOptions
String
Sends additional options to any Maven commands used to generate the lock file and dependency graph file.
sonar.sca.gradleNoResolve
Boolean
false
Disables automatic generation of a Gradle dependencies lock file. This results in degraded dependency information.
sonar.sca.gradleConfigurationPattern
String
Java regex of configurations to include. This is passed to gradle via -PconfigurationPattern
. When unset, all configurations will be resolved.
sonar.sca.pythonBinary
String
/usr/bin/python
Path to a specific Python binary that should be used if lock files need to be generated.
sonar.sca.pythonNoResolve
Boolean
false
Disables automatic generation of a Python lock file. This results in degraded dependency information.
sonar.sca.pythonResolveLocal
Boolean
false
When generating a python lockfile, dependency resolution is done in a temporary virtual environment. Set this to true to skip creation of the virtual environment and resolve against the local python environment.
sonar.sca.npmNoResolve
Boolean
false
Disables automatic generation of a lock file for an NPM project when a supported lockfile (yarn.lock
, package-lock.json
, pnpm-lock.yaml
, bun.lock
) is not present.
sonar.sca.npmEnableScripts
Boolean
false
By default, when generating a lockfile, the --ignore-scripts NPM/Yarn
option is passed to ignore any lifecycle scripts. If lifecycle scripts are needed to properly generate dependencies, enable this option.
sonar.sca.nugetNoResolve
Boolean
false
Disables automatic generation of a lock file for a Nuget project.
sonar.scanner.keepReport
Boolean
false
Not specific to SCA. Keeps the scanner work directory after analysis, including the dependency-files.tar.xz
that contains dependency files to analyze. Useful if you have access to commercial support, as the Sonar support team may ask for this file to assist with resolving issues.
sonar.sca.resolveAsRoot
Boolean
false
By default, Sonar does not run dependency resolution commands as an administrator, as installing packages could lead to compromise if a malicious package is specified.
While not recommended, you can set this to true
if you have vetted your dependencies and need to resolve dependencies while running as an administrator.
Troubleshooting the dependency analysis
See Advanced security troubleshooting for guidance on how to troubleshoot the dependency analysis.
Continual analysis
Once SCA analysis has been performed on a branch, Sonar automatically re-analyzes your branch for new dependency risks. This analysis runs once per day. Any newly discovered vulnerability or license risks will be added to the list of dependency risks for your project, any changes to risk factors and scoring will cause any needed severity updates, and any quality gate will be recomputed.
What data is collected
Whenever you run an analysis, data is sent to a Sonar cloud service for analysis. The Sonar scanner collects the manifests of your projects. Manifests are language-specific files that define your projects’ dependencies, such as pom.xml
for Java, or requirements.txt
for Python. The scanner also collects any relevant lockfiles that describe the fully-resolved set of dependencies, such as package-lock.json
for a JavaScript project.
These manifests and lockfiles are assembled into an archive file and sent to a Sonar cloud service for analysis. All data is sent over a secure HTTPS connection. Information on your dependencies and their issues is returned to SonarQube Cloud. No source code is sent to Sonar.
Manifests and lockfiles are not stored persistently in Sonar. Sonar may collect aggregate data, and other service telemetry on open source package usage in an anonymized way.
The manifest and lockfiles that are processed contain a list of all dependencies of your project, which could include internally-developed library names. The Sonar service compares dependency names against a set of known open source components; any internally-developed library name would not match, and therefore would not have any license or vulnerability data returned for that library.
Related pages
Last updated
Was this helpful?