|
4 | 4 | <parent>
|
5 | 5 | <groupId>org.jenkins-ci.plugins</groupId>
|
6 | 6 | <artifactId>plugin</artifactId>
|
7 |
| - <version>3.54</version> |
| 7 | + <version>4.16</version> |
8 | 8 | <relativePath />
|
9 | 9 | </parent>
|
10 | 10 | <groupId>org.jenkins-ci.plugins.workflow</groupId>
|
|
40 | 40 | <properties>
|
41 | 41 | <revision>2.12</revision>
|
42 | 42 | <changelist>-SNAPSHOT</changelist>
|
43 |
| - <jenkins.version>2.60</jenkins.version> |
| 43 | + <jenkins.version>2.222.4</jenkins.version> |
44 | 44 | <java.level>8</java.level>
|
45 |
| - <scm-api-plugin.version>2.2.6</scm-api-plugin.version> |
46 |
| - <git-plugin.version>3.6.0</git-plugin.version> |
47 |
| - <subversion-plugin.version>2.10.5</subversion-plugin.version> |
48 |
| - <workflow-step-api-plugin.version>2.9</workflow-step-api-plugin.version> |
49 |
| - <workflow-support-plugin.version>2.14</workflow-support-plugin.version> |
| 45 | + <subversion-plugin.version>2.14.0</subversion-plugin.version> |
| 46 | + <svnkit.version>1.10.1</svnkit.version> |
50 | 47 | </properties>
|
51 | 48 | <dependencyManagement>
|
52 | 49 | <dependencies>
|
53 | 50 | <dependency>
|
54 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
55 |
| - <artifactId>credentials</artifactId> |
56 |
| - <version>2.1.15</version> |
| 51 | + <groupId>io.jenkins.tools.bom</groupId> |
| 52 | + <artifactId>bom-2.222.x</artifactId> |
| 53 | + <version>23</version> |
| 54 | + <scope>import</scope> |
| 55 | + <type>pom</type> |
57 | 56 | </dependency>
|
58 | 57 | <dependency>
|
59 | 58 | <groupId>org.tmatesoft.svnkit</groupId>
|
60 | 59 | <artifactId>svnkit</artifactId>
|
61 |
| - <version>1.9.2</version> |
| 60 | + <version>${svnkit.version}</version> |
62 | 61 | </dependency>
|
63 | 62 | </dependencies>
|
64 | 63 | </dependencyManagement>
|
65 | 64 | <dependencies>
|
66 | 65 | <dependency>
|
67 | 66 | <groupId>${project.groupId}</groupId>
|
68 | 67 | <artifactId>workflow-step-api</artifactId>
|
69 |
| - <version>${workflow-step-api-plugin.version}</version> |
70 | 68 | </dependency>
|
71 | 69 | <dependency>
|
72 | 70 | <groupId>org.jenkins-ci.plugins</groupId>
|
73 | 71 | <artifactId>scm-api</artifactId>
|
74 |
| - <version>${scm-api-plugin.version}</version> |
75 | 72 | <scope>test</scope>
|
76 | 73 | </dependency>
|
77 | 74 | <dependency>
|
78 | 75 | <groupId>org.jenkins-ci.plugins</groupId>
|
79 | 76 | <artifactId>scm-api</artifactId>
|
80 |
| - <version>${scm-api-plugin.version}</version> |
81 | 77 | <classifier>tests</classifier>
|
82 | 78 | <scope>test</scope>
|
83 | 79 | </dependency>
|
84 | 80 | <dependency>
|
85 | 81 | <groupId>org.jenkins-ci.plugins</groupId>
|
86 | 82 | <artifactId>git</artifactId>
|
87 |
| - <version>${git-plugin.version}</version> |
88 |
| - <scope>test</scope> |
89 |
| - <exclusions> |
90 |
| - <exclusion> |
91 |
| - <groupId>org.apache.httpcomponents</groupId> |
92 |
| - <artifactId>httpclient</artifactId> |
93 |
| - </exclusion> |
94 |
| - <exclusion> |
95 |
| - <groupId>org.jenkins-ci</groupId> |
96 |
| - <artifactId>annotation-indexer</artifactId> |
97 |
| - </exclusion> |
98 |
| - <exclusion> |
99 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
100 |
| - <artifactId>workflow-scm-step</artifactId> |
101 |
| - </exclusion> |
102 |
| - </exclusions> |
| 83 | + <scope>test</scope> |
103 | 84 | </dependency>
|
104 | 85 | <dependency>
|
105 | 86 | <groupId>org.jenkins-ci.plugins</groupId>
|
106 | 87 | <artifactId>git</artifactId>
|
107 |
| - <version>${git-plugin.version}</version> |
108 | 88 | <classifier>tests</classifier>
|
109 | 89 | <scope>test</scope>
|
110 |
| - <exclusions> |
111 |
| - <exclusion> <!-- TODO IIRC this was a mistake in git-client which was since fixed --> |
112 |
| - <groupId>org.jenkins-ci</groupId> |
113 |
| - <artifactId>annotation-indexer</artifactId> |
114 |
| - </exclusion> |
115 |
| - <exclusion> |
116 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
117 |
| - <artifactId>workflow-scm-step</artifactId> |
118 |
| - </exclusion> |
119 |
| - </exclusions> |
120 | 90 | </dependency>
|
121 | 91 | <dependency>
|
122 | 92 | <groupId>org.jenkins-ci.plugins</groupId>
|
123 | 93 | <artifactId>subversion</artifactId>
|
124 | 94 | <version>${subversion-plugin.version}</version>
|
125 | 95 | <scope>test</scope>
|
126 |
| - <exclusions> |
127 |
| - <exclusion> |
128 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
129 |
| - <artifactId>workflow-scm-step</artifactId> |
130 |
| - </exclusion> |
131 |
| - </exclusions> |
132 | 96 | </dependency>
|
133 | 97 | <dependency>
|
134 | 98 | <groupId>org.jenkins-ci.plugins</groupId>
|
135 | 99 | <artifactId>subversion</artifactId>
|
136 | 100 | <version>${subversion-plugin.version}</version>
|
137 | 101 | <classifier>tests</classifier>
|
138 | 102 | <scope>test</scope>
|
139 |
| - <exclusions> |
140 |
| - <exclusion> |
141 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
142 |
| - <artifactId>workflow-scm-step</artifactId> |
143 |
| - </exclusion> |
144 |
| - </exclusions> |
145 | 103 | </dependency>
|
146 | 104 | <dependency>
|
147 | 105 | <groupId>org.tmatesoft.svnkit</groupId>
|
148 | 106 | <artifactId>svnkit-cli</artifactId>
|
149 |
| - <version>1.9.2</version> |
| 107 | + <version>${svnkit.version}</version> |
150 | 108 | <scope>test</scope>
|
151 | 109 | </dependency>
|
152 | 110 | <dependency>
|
153 | 111 | <groupId>org.jenkins-ci.plugins.workflow</groupId>
|
154 | 112 | <artifactId>workflow-step-api</artifactId>
|
155 |
| - <version>${workflow-step-api-plugin.version}</version> |
156 | 113 | <classifier>tests</classifier>
|
157 | 114 | <scope>test</scope>
|
158 | 115 | </dependency>
|
159 | 116 | <dependency>
|
160 | 117 | <groupId>org.jenkins-ci.plugins.workflow</groupId>
|
161 | 118 | <artifactId>workflow-cps</artifactId>
|
162 |
| - <version>2.29</version> |
163 | 119 | <scope>test</scope>
|
164 |
| - <exclusions> |
165 |
| - <exclusion> |
166 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
167 |
| - <artifactId>workflow-scm-step</artifactId> |
168 |
| - </exclusion> |
169 |
| - </exclusions> |
170 | 120 | </dependency>
|
171 | 121 | <dependency>
|
172 | 122 | <groupId>org.jenkins-ci.plugins.workflow</groupId>
|
173 | 123 | <artifactId>workflow-multibranch</artifactId>
|
174 |
| - <version>2.14</version> |
175 | 124 | <scope>test</scope>
|
176 |
| - <exclusions> |
177 |
| - <exclusion> |
178 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
179 |
| - <artifactId>workflow-scm-step</artifactId> |
180 |
| - </exclusion> |
181 |
| - </exclusions> |
182 | 125 | </dependency>
|
183 | 126 | <dependency>
|
184 | 127 | <groupId>org.jenkins-ci.plugins</groupId>
|
185 | 128 | <artifactId>cloudbees-folder</artifactId>
|
186 |
| - <version>5.18</version> |
187 | 129 | <scope>test</scope>
|
188 | 130 | </dependency>
|
189 | 131 | <dependency>
|
190 | 132 | <groupId>org.jenkins-ci.plugins.workflow</groupId>
|
191 | 133 | <artifactId>workflow-job</artifactId>
|
192 |
| - <version>2.12</version> |
193 | 134 | <scope>test</scope>
|
194 | 135 | </dependency>
|
195 | 136 | <dependency>
|
196 | 137 | <groupId>org.jenkins-ci.plugins.workflow</groupId>
|
197 | 138 | <artifactId>workflow-basic-steps</artifactId>
|
198 |
| - <version>2.4</version> |
199 | 139 | <scope>test</scope>
|
200 | 140 | </dependency>
|
201 | 141 | <dependency>
|
202 | 142 | <groupId>org.jenkins-ci.plugins.workflow</groupId>
|
203 | 143 | <artifactId>workflow-durable-task-step</artifactId>
|
204 |
| - <version>2.11</version> |
205 | 144 | <scope>test</scope>
|
206 | 145 | </dependency>
|
207 | 146 | <dependency>
|
208 | 147 | <groupId>org.jenkins-ci.plugins.workflow</groupId>
|
209 | 148 | <artifactId>workflow-support</artifactId>
|
210 |
| - <version>${workflow-support-plugin.version}</version> |
211 | 149 | <scope>test</scope>
|
212 | 150 | </dependency>
|
213 | 151 | <dependency>
|
214 | 152 | <groupId>org.jenkins-ci.plugins.workflow</groupId>
|
215 | 153 | <artifactId>workflow-support</artifactId>
|
216 |
| - <version>${workflow-support-plugin.version}</version> |
217 | 154 | <classifier>tests</classifier>
|
218 | 155 | <scope>test</scope>
|
219 | 156 | </dependency>
|
220 | 157 | <dependency>
|
221 | 158 | <groupId>org.jenkins-ci.plugins</groupId>
|
222 | 159 | <artifactId>mercurial</artifactId>
|
223 |
| - <version>1.54</version> |
| 160 | + <version>2.12</version> |
224 | 161 | <scope>test</scope>
|
225 |
| - <exclusions> |
226 |
| - <exclusion> <!-- git-client has a newer one --> |
227 |
| - <groupId>com.jcraft</groupId> |
228 |
| - <artifactId>jsch</artifactId> |
229 |
| - </exclusion> |
230 |
| - </exclusions> |
231 | 162 | </dependency>
|
232 | 163 | <dependency>
|
233 | 164 | <groupId>org.jenkins-ci.plugins</groupId>
|
234 | 165 | <artifactId>junit</artifactId>
|
235 |
| - <version>1.20</version> |
236 | 166 | <scope>test</scope>
|
237 | 167 | </dependency>
|
238 | 168 | <dependency>
|
239 | 169 | <groupId>org.jenkins-ci.plugins</groupId>
|
240 | 170 | <artifactId>structs</artifactId>
|
241 |
| - <version>1.10</version> |
242 | 171 | <scope>test</scope>
|
243 | 172 | </dependency>
|
244 | 173 | </dependencies>
|
|
0 commit comments