-
Notifications
You must be signed in to change notification settings - Fork 3
/
task.json
54 lines (54 loc) · 1.17 KB
/
task.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
{
"atomCode": "plugin-demo-java",
"defaultLocaleLanguage" : "zh_CN",
"execution": {
"packagePath": "plugin-demo-java-jar-with-dependencies.jar",
"language": "java",
"minimumVersion": "1.8",
"demands": [],
"target": "$bk_java_path -jar plugin-demo-java-jar-with-dependencies.jar"
},
"input" : {
"desc" : {
"label" : "描述",
"default" : "",
"placeholder" : "请输入描述信息",
"type" : "vuex-input",
"desc" : "描述",
"required" : true,
"disabled" : false,
"hidden" : false,
"isSensitive" : false
},
"pullType": {
"label": "指定拉取方式",
"default": "BRANCH",
"type": "select-input",
"required": false,
"optionsConf": {
"searchable": true
},
"options": [
{
"id": "BRANCH",
"name": "分支"
},
{
"id": "TAG",
"name": "标签"
},
{
"id": "COMMIT_ID",
"name": "提交ID"
}
]
}
},
"output" : {
"testResult" : {
"description" : "升级是否成功",
"type" : "string",
"isSensitive" : false
}
}
}