-
Notifications
You must be signed in to change notification settings - Fork 4
/
vss-extension.json
92 lines (92 loc) · 2.35 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
{
"manifestVersion": 1,
"id": "whitesource",
"version": "20.5.3",
"name": "WhiteSource for Azure DevOps Server",
"description": "Detect & fix security vulnerabilities, problematic open source licenses and quality issues.",
"publisher": "whitesource",
"public": true,
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"content": {
"details": {
"path": "details.md"
}
},
"categories": [
"Build and release"
],
"branding": {
"color": "rgb(78, 104, 193)",
"theme": "dark"
},
"icons": {
"default": "images/logo.png"
},
"files": [
{
"path": "whitesource",
"addressable": true
},
{
"path": "images",
"addressable": true
}
],
"contributions": [
{
"id": "task-hash-collector",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "whitesource"
}
},
{
"id": "service-endpoint",
"description": "Service Endpoint type for WhiteSource connections",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "whitesource",
"displayName": "WhiteSource",
"url": {
"displayName": "Server Url",
"helpText": "Url for the WhiteSource server to connect to."
},
"dataSources": [
{
"name": "WhiteSource Projects",
"endpointUrl": "{{endpoint.url}}/agent",
"resultSelector": "jsonpath:$[*].nm"
}
],
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"inputDescriptors": [
{
"id": "userKey",
"name": "User Key",
"description": "Unique identifier of the organization to update can be retrieved from the admin page in your WhiteSource account",
"inputMode": "textbox",
"validation": {
"isRequired": false,
"dataType": "string"
}
}
]
}
],
"helpMarkDown": "<a href=\"http://www.whitesourcesoftware.com/tfs_security\" target=\"_blank\"><b>Learn More</b></a>"
}
}
]
}