We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97a109b commit 9992d15Copy full SHA for 9992d15
1 file changed
scanpipe/pipelines/scan_maven_package.py
@@ -29,11 +29,19 @@
29
30
class ScanMavenPackage(ScanSinglePackage, DeployToDevelop):
31
"""
32
- Scan a single maven package archive.
+ Scan a single maven package archive, or run a D2D scan for a maven package.
33
34
This pipeline scans a single maven package for package metadata,
35
declared dependencies, licenses, license clarity score and copyrights.
36
37
+ In addition, if the `deploy_to_develop` option is enabled, it performs a
38
+ D2D (deploy to develop) scan for Maven projects.
39
+
40
+ It requires a minimum of two archive files, each properly tagged with:
41
42
+ - **from** for archives containing the development source code.
43
+ - **to** for archives containing the deployment compiled code.
44
45
The output is a summary of the scan results in JSON format.
46
47
0 commit comments