-
Notifications
You must be signed in to change notification settings - Fork 13
/
vss-extension.json
148 lines (148 loc) · 3.85 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
{
"manifestVersion": 1,
"id": "blackduck-detect-qa",
"version": "10.0.0",
"name": "Black Duck Detect QA",
"publisher": "blackduck",
"public": false,
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"tags": [
"Black Duck",
"Detect",
"Continuous Integration",
"Security",
"Open Source",
"Build"
],
"scopes": [
"vso.build_execute"
],
"description": "Run Black Duck Detect for your build",
"categories": [
"Azure Pipelines"
],
"icons": {
"default": "images/BlackDuckIcon.png"
},
"branding": {
"color": "#00639c",
"theme": "dark"
},
"files": [
{
"path": "tasks/blackduck-detect-task"
},
{
"path": "images",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
}
],
"content": {
"details": {
"path": "overview.md"
}
},
"contributions": [
{
"id": "blackduck-detect-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/blackduck-detect-task"
}
},
{
"id": "blackduck-proxy-endpoint",
"description": "Proxy Service Endpoint for Black Duck connections",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "blackduckproxy",
"displayName": "Black Duck Proxy",
"url": {
"displayName": "Server URL",
"helpText": "Provide the URL for your proxy - please include the port if other than 80 (http) or 443 (https)"
},
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-basic",
"inputDescriptors": [
{
"id": "username",
"name": "Username",
"description": "The username for this proxy",
"inputMode": "textbox",
"validation": {
"isRequired": false,
"dataType": "string"
}
},
{
"id": "password",
"name": "Password",
"description": "The password for this proxy",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": false,
"dataType": "string"
}
}
]
}
]
}
},
{
"id": "blackduck-endpoint",
"description": "Service Endpoint for Black Duck connections",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "blackduck",
"displayName": "Black Duck",
"url": {
"displayName": "Server URL",
"helpText": "Provide the URL for your Black Duck Server - please include the port if other than 80 (http) or 443 (https)"
},
"authenticationSchemes": [
{
"id": "endpoint-auth-scheme-token",
"name": "Api Token",
"displayName": "Token Based Authentication",
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"inputDescriptors": [
{
"id": "apitoken",
"name": "API Token",
"description": "API Token for connection to endpoint",
"inputMode": "textbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string",
"maxLength": 300
}
}
]
}
]
}
}
]
}