forked from cxai/VSTS-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
191 lines (191 loc) · 4.79 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
{
"manifestVersion": 1,
"id": "cxsast",
"name": "Checkmarx CxSAST",
"version": "8.60.5",
"publisher": "Checkmarx",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"public": false,
"description": "Add Secure Static Source Code Analysis inside your build process",
"icons": {
"default": "extension-icon.png"
},
"categories": [
"Build and release"
],
"tags": [
"Security",
"SCA",
"Static Code Analysis",
"Scan",
"SAST",
"Checkmarx",
"CxSAST",
"OSA",
"Open source",
"Software Composition Analysis"
],
"scopes": [
"vso.build_execute"
],
"content": {
"details": {
"path": "overview.md"
},
"license": {
"path": "checkmarx-license-terms.md"
}
},
"links": {
"getstarted": {
"uri": "https://info.checkmarx.com/cx-microsoft-vs-team-services"
},
"learn": {
"uri": "https://checkmarx.atlassian.net/wiki/spaces/KC/pages/96731162/CxSAST+MS-VSTS+Plugin+v8.4.1+and+up"
},
"support": {
"uri": "https://support.checkmarx.com/home"
}
},
"branding": {
"color": "rgb(81, 53, 124)",
"theme": "dark"
},
"files": [
{
"path": "CxScan"
},
{
"path": "images/config.png",
"addressable": true
},
{
"path": "images/sample2.png",
"addressable": true
},
{
"path": "images/sample3.png",
"addressable": true
},
{
"path": "images/sample5.png",
"addressable": true
},
{
"path": "images/summaryTab.PNG",
"addressable": true
},
{
"path": "UI_Versions/8_60_0",
"addressable": true,
"packagePath": "UI_Versions/8_60_0/scripts"
},
{
"path": "UI_Versions/8_60_0/cxreport.html",
"addressable": true
},
{
"path": "UI_Versions/8_60_0/cxSummary.html",
"addressable": true
},
{
"path": "UI_Versions/8_60_0/css/cxreport.css",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
},
{
"path": "CxScan/CxOSA/osaDll/CxOSA.dll",
"addressable": true
}
],
"contributions": [
{
"id": "cx-scan-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "CxScan"
}
},
{
"id": "CxEndpoint",
"description": "Service Endpoint type for all Cx connections",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "Checkmarx-Endpoint",
"displayName": "Checkmarx",
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-basic",
"inputDescriptors": [
{
"id": "username",
"name": "Username",
"description": "Checkmarx username",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"dataType": "String",
"isRequired": true
}
},
{
"id": "password",
"name": "Password",
"description": "Checkmarx user password",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"dataType": "String",
"isRequired": true
}
}
]
}
],
"helpMarkDown": "<span><span style=\"color: #222\"><font size=\"3\">If you don't already have Checkmarx installed, click </font></span><a href=\"https://info.checkmarx.com/cx-microsoft-vs-team-services\" target=\"_blank\"><span style=\"color: #0072c6\"><font size=\"3\">here</font></span></a>to register for a cloud Checkmarx account</span>"
}
},
{
"id": "cx-report",
"type": "ms.vss-build-web.build-results-tab",
"description": "A tab contributing to Checkmarx results report",
"targets": [
"ms.vss-build-web.build-results-view"
],
"properties": {
"name": "Checkmarx",
"uri": "UI_Versions/8_60_0/cxreport.html",
"height": "175%",
"width": "100%"
}
},
{
"id": "cx-summary-report",
"type": "ms.vss-build-web.build-results-section",
"description": "A section contributing Checkmarx results to existing build 'summary' tab",
"targets": [
"ms.vss-build-web.build-results-summary-tab"
],
"properties": {
"name": "Checkmarx Scan Results",
"uri": "UI_Versions/8_60_0/cxSummary.html",
"height": "700px",
"width": "1150px"
}
}
]
}