forked from julz0815/ADO-Veracode-Pipeline-Scan-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
executable file
·87 lines (87 loc) · 2.17 KB
/
vss-extension.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"manifestVersion": 1,
"id": "VeracodePipelineScan",
"version": "0.1.18",
"name": "Veracode Pipeline Scan",
"description": "An extension which lets you run Veracode's pipeline scan and publish results as a seperate tab. ",
"publisher": "JulianTotzek-Hallhuber",
"public": true,
"content": {
"details": {
"path": "overview.md"
},
"license": {
"path": "LICENSE"
}
},
"icons": {
"default": "images/VC_logo.png"
},
"tags": [
"Security",
"Veracode",
"Sast",
"Pipeline Scan",
"Code analysis"
],
"scopes": [
"vso.build_execute"
],
"categories": [
"Azure Pipelines"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"files": [
{
"path": "images",
"addressable": true
},
{
"path": "dist",
"addressable": true,
"packagePath": "scripts"
},
{
"path": "index.html",
"addressable": true
},
{
"path": "pipelinescan",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
}
],
"contributions": [
{
"id": "build-info-tab",
"type": "ms.vss-build-web.build-results-tab",
"description": "A tab contributing to build results view",
"targets": [
"ms.vss-build-web.build-results-view"
],
"properties": {
"name": "Veracode Pipeline Scan results",
"uri": "index.html",
"supportsTasks": ["99e8d79d-febd-4f2e-b2df-da8f8257b59c"]
}
},
{
"id": "pipelinescan",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "pipelinescan"
}
}
]
}