|
55 | 55 | <properties>
|
56 | 56 | <!-- Baseline Jenkins version you use to build the plugin. Users must
|
57 | 57 | have this version or newer to run. -->
|
58 |
| - <jenkins.version>1.653</jenkins.version> |
| 58 | + <jenkins.version>2.334</jenkins.version> |
59 | 59 | <java.level>8</java.level>
|
60 | 60 | <java.level.test>8</java.level.test>
|
61 | 61 | <maven-surefire-plugin.version>2.9</maven-surefire-plugin.version>
|
|
124 | 124 | <dependency>
|
125 | 125 | <groupId>junit</groupId>
|
126 | 126 | <artifactId>junit</artifactId>
|
127 |
| - <version>4.12</version> |
| 127 | + <version>4.13.1</version> |
128 | 128 | <scope>test</scope>
|
129 | 129 | </dependency>
|
130 | 130 |
|
|
168 | 168 | <dependency>
|
169 | 169 | <groupId>org.jenkins-ci.plugins</groupId>
|
170 | 170 | <artifactId>credentials</artifactId>
|
171 |
| - <version>2.1.17</version> |
| 171 | + <version>2.6.1.1</version> |
172 | 172 | </dependency>
|
173 | 173 |
|
174 | 174 | <dependency>
|
175 | 175 | <groupId>org.jenkins-ci.plugins</groupId>
|
176 | 176 | <artifactId>junit</artifactId>
|
177 |
| - <version>1.10</version> |
| 177 | + <version>1.24</version> |
178 | 178 | </dependency>
|
179 | 179 |
|
180 | 180 | <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
|
181 | 181 | <dependency>
|
182 | 182 | <groupId>com.google.code.gson</groupId>
|
183 | 183 | <artifactId>gson</artifactId>
|
184 |
| - <version>2.8.2</version> |
| 184 | + <version>2.8.9</version> |
185 | 185 | </dependency>
|
186 | 186 |
|
187 | 187 | <dependency>
|
|
222 | 222 | <dependency>
|
223 | 223 | <groupId>org.jenkins-ci.plugins.workflow</groupId>
|
224 | 224 | <artifactId>workflow-api</artifactId>
|
225 |
| - <version>2.20</version> |
| 225 | + <version>2.22</version> |
226 | 226 | <scope>compile</scope>
|
227 | 227 | </dependency>
|
228 | 228 |
|
|
236 | 236 | <dependency>
|
237 | 237 | <groupId>org.jenkins-ci.plugins</groupId>
|
238 | 238 | <artifactId>structs</artifactId>
|
239 |
| - <version>1.7</version> |
| 239 | + <version>1.23</version> |
240 | 240 | </dependency>
|
241 | 241 |
|
242 | 242 | <dependency>
|
243 | 243 | <groupId>com.fasterxml.jackson.core</groupId>
|
244 | 244 | <artifactId>jackson-core</artifactId>
|
245 |
| - <version>2.1.0</version> |
| 245 | + <version>2.12.6</version> |
246 | 246 | </dependency>
|
| 247 | + |
247 | 248 | <dependency>
|
248 | 249 | <groupId>com.fasterxml.jackson.core</groupId>
|
249 | 250 | <artifactId>jackson-databind</artifactId>
|
250 |
| - <version>2.1.0</version> |
| 251 | + <version>2.12.6.1</version> |
251 | 252 | </dependency>
|
252 | 253 |
|
253 | 254 | <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
|
|
262 | 263 | <dependency>
|
263 | 264 | <groupId>commons-io</groupId>
|
264 | 265 | <artifactId>commons-io</artifactId>
|
265 |
| - <version>2.4</version> |
| 266 | + <version>2.7</version> |
| 267 | + </dependency> |
| 268 | + |
| 269 | + <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> |
| 270 | + <dependency> |
| 271 | + <groupId>org.slf4j</groupId> |
| 272 | + <artifactId>slf4j-api</artifactId> |
| 273 | + <version>1.7.25</version> |
| 274 | + </dependency> |
| 275 | + |
| 276 | + <!-- https://mvnrepository.com/artifact/org.jenkins-ci.plugins/script-security --> |
| 277 | + <dependency> |
| 278 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 279 | + <artifactId>script-security</artifactId> |
| 280 | + <version>1.31</version> |
| 281 | + </dependency> |
| 282 | + |
| 283 | + <!-- https://mvnrepository.com/artifact/org.springframework/spring-beans --> |
| 284 | + <dependency> |
| 285 | + <groupId>org.springframework</groupId> |
| 286 | + <artifactId>spring-beans</artifactId> |
| 287 | + <version>5.3.18</version> |
266 | 288 | </dependency>
|
267 | 289 | </dependencies>
|
268 | 290 |
|
|
332 | 354 | <argLine>${argLine} -Xmx512m -XX:MaxPermSize=256m</argLine>
|
333 | 355 | </configuration>
|
334 | 356 | </plugin>
|
| 357 | + |
| 358 | + <plugin> |
| 359 | + <groupId>org.apache.maven.plugins</groupId> |
| 360 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 361 | + <version>3.1.0</version> |
| 362 | + <executions> |
| 363 | + <execution> |
| 364 | + <id>enforce-bytecode-version</id> |
| 365 | + <goals> |
| 366 | + <goal>enforce</goal> |
| 367 | + </goals> |
| 368 | + <configuration> |
| 369 | + <rules> |
| 370 | + <enforceBytecodeVersion> |
| 371 | + <maxJdkVersion>1.8</maxJdkVersion> |
| 372 | + <ignoreClasses> |
| 373 | + <ignoreClass>module-info</ignoreClass> |
| 374 | + </ignoreClasses> |
| 375 | + </enforceBytecodeVersion> |
| 376 | + </rules> |
| 377 | + </configuration> |
| 378 | + </execution> |
| 379 | + </executions> |
| 380 | + <dependencies> |
| 381 | + <dependency> |
| 382 | + <groupId>org.codehaus.mojo</groupId> |
| 383 | + <artifactId>extra-enforcer-rules</artifactId> |
| 384 | + <version>1.4</version> |
| 385 | + </dependency> |
| 386 | + </dependencies> |
| 387 | + </plugin> |
| 388 | + |
| 389 | + <plugin> |
| 390 | + <groupId>org.codehaus.mojo</groupId> |
| 391 | + <artifactId>animal-sniffer-maven-plugin</artifactId> |
| 392 | + <version>1.16</version> |
| 393 | + <executions> |
| 394 | + <execution> |
| 395 | + <goals> |
| 396 | + <goal>check</goal> |
| 397 | + </goals> |
| 398 | + </execution> |
| 399 | + </executions> |
| 400 | + </plugin> |
335 | 401 | </plugins>
|
336 | 402 | </build>
|
337 | 403 |
|
|
0 commit comments