forked from jenkinsci/image-tag-parameter-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall_plugins.groovy
More file actions
81 lines (81 loc) · 1.8 KB
/
install_plugins.groovy
File metadata and controls
81 lines (81 loc) · 1.8 KB
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
for (plugin in [
"trilead-api",
"cloudbees-folder",
"jdk-tool",
"script-security",
"command-launcher",
"antisamy-markup-formatter",
"structs",
"workflow-step-api",
"token-macro",
"bouncycastle-api",
"build-timeout",
"credentials",
"plain-credentials",
"ssh-credentials",
"credentials-binding",
"scm-api",
"workflow-api",
"timestamper",
"workflow-support",
"durable-task",
"workflow-durable-task-step",
"junit",
"matrix-project",
"resource-disposer",
"ws-cleanup",
"ant",
"ace-editor",
"jquery-detached",
"workflow-scm-step",
"workflow-cps",
"workflow-job",
"apache-httpcomponents-client-4-api",
"display-url-api",
"mailer",
"workflow-basic-steps",
"gradle",
"pipeline-milestone-step",
"jackson2-api",
"pipeline-input-step",
"pipeline-stage-step",
"pipeline-graph-analysis",
"pipeline-rest-api",
"handlebars",
"momentjs",
"pipeline-stage-view",
"pipeline-build-step",
"pipeline-model-api",
"pipeline-model-extensions",
"jsch",
"git-client",
"git-server",
"workflow-cps-global-lib",
"branch-api",
"workflow-multibranch",
"authentication-tokens",
"docker-commons",
"docker-workflow",
"pipeline-stage-tags-metadata",
"pipeline-model-declarative-agent",
"pipeline-model-definition",
"lockable-resources",
"workflow-aggregator",
"github-api",
"git",
"github",
"github-branch-source",
"pipeline-github-lib",
"mapdb-api",
"subversion",
"ssh-slaves",
"matrix-auth",
"pam-auth",
"ldap",
"email-ext",
"configuration-as-code",
]) {
e = Hudson.instance.updateCenter.getPlugin(plugin).deploy().get().getError()
if (e != null)
println e.message
}