|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 3 | <parent>
|
4 | 4 | <artifactId>parent</artifactId>
|
5 | 5 | <groupId>io.jenkins.configuration-as-code</groupId>
|
6 |
| - <version>${revision}${changelist}</version> |
| 6 | + <version>${changelist}</version> |
7 | 7 | </parent>
|
8 | 8 | <modelVersion>4.0.0</modelVersion>
|
9 | 9 |
|
|
13 | 13 |
|
14 | 14 | <properties>
|
15 | 15 | <maven.deploy.skip>true</maven.deploy.skip> <!-- no need to be deployed during release, this is a test-only module -->
|
16 |
| - <jackson.version>2.12.4</jackson.version> |
| 16 | + <jackson.version>2.13.1</jackson.version> |
| 17 | + <enforcer.skip>true</enforcer.skip> <!-- I give up, too much effort to maintain enforcer here, should probably try clear out all enforcer only deps and see if it works --> |
17 | 18 | <netty.version>4.1.72.Final</netty.version>
|
18 | 19 | <jenkins.version>2.319.1</jenkins.version>
|
19 | 20 | <junixsocket.version>2.4.0</junixsocket.version>
|
|
73 | 74 | </exclusion>
|
74 | 75 | </exclusions>
|
75 | 76 | </dependency>
|
| 77 | + <dependency> |
| 78 | + <groupId>org.apache.ivy</groupId> |
| 79 | + <artifactId>ivy</artifactId> |
| 80 | + <version>2.5.0</version> |
| 81 | + </dependency> |
76 | 82 |
|
77 | 83 | <dependency>
|
78 | 84 | <groupId>org.jenkins-ci.plugins</groupId>
|
|
409 | 415 | <dependency>
|
410 | 416 | <groupId>org.antlr</groupId>
|
411 | 417 | <artifactId>antlr4-runtime</artifactId>
|
412 |
| - <version>4.9.2</version> |
| 418 | + <version>4.9.3</version> |
413 | 419 | </dependency>
|
414 | 420 | <dependency>
|
415 | 421 | <groupId>org.jenkins-ci.plugins</groupId>
|
|
418 | 424 | <dependency>
|
419 | 425 | <groupId>jaxen</groupId>
|
420 | 426 | <artifactId>jaxen</artifactId>
|
421 |
| - <version>1.2.0</version> |
| 427 | + <exclusions> |
| 428 | + <exclusion> |
| 429 | + <groupId>xml-apis</groupId> |
| 430 | + <artifactId>xml-apis</artifactId> |
| 431 | + </exclusion> |
| 432 | + </exclusions> |
422 | 433 | </dependency>
|
423 | 434 |
|
424 | 435 | <dependency>
|
|
437 | 448 | <dependency>
|
438 | 449 | <groupId>org.jenkins-ci.plugins</groupId>
|
439 | 450 | <artifactId>slack</artifactId>
|
440 |
| - <version>2.48</version> |
| 451 | + <version>602.v0da_f7458945d</version> |
441 | 452 | <scope>test</scope>
|
442 | 453 | </dependency>
|
443 | 454 |
|
|
458 | 469 | <artifactId>custom-tools-plugin</artifactId>
|
459 | 470 | <version>0.8</version>
|
460 | 471 | </dependency>
|
| 472 | + |
| 473 | + <dependency> |
| 474 | + <groupId>net.minidev</groupId> |
| 475 | + <artifactId>json-smart</artifactId> |
| 476 | + <version>2.4.7</version> |
| 477 | + <exclusions> |
| 478 | + <exclusion> |
| 479 | + <groupId>org.ow2.asm</groupId> |
| 480 | + <artifactId>asm</artifactId> |
| 481 | + </exclusion> |
| 482 | + </exclusions> |
| 483 | + </dependency> |
461 | 484 | <dependency>
|
462 | 485 | <groupId>org.jenkins-ci.plugins</groupId>
|
463 | 486 | <artifactId>gitlab-plugin</artifactId>
|
|
491 | 514 | <dependency>
|
492 | 515 | <groupId>org.jsoup</groupId>
|
493 | 516 | <artifactId>jsoup</artifactId>
|
494 |
| - <version>1.14.2</version> |
| 517 | + <version>1.14.3</version> |
495 | 518 | <scope>test</scope>
|
496 | 519 | </dependency>
|
497 | 520 |
|
498 | 521 | <dependency>
|
499 | 522 | <groupId>com.vladsch.flexmark</groupId>
|
500 | 523 | <artifactId>flexmark-all</artifactId>
|
501 |
| - <version>0.50.42</version> |
| 524 | + <version>0.62.2</version> |
502 | 525 | <scope>test</scope>
|
503 | 526 | </dependency>
|
504 | 527 |
|
|
552 | 575 | <artifactId>gson</artifactId>
|
553 | 576 | <version>2.8.8</version>
|
554 | 577 | </dependency>
|
| 578 | + <dependency> |
| 579 | + <groupId>org.projectlombok</groupId> |
| 580 | + <artifactId>lombok</artifactId> |
| 581 | + <version>1.18.20</version> |
| 582 | + </dependency> |
| 583 | + <dependency> |
| 584 | + <groupId>com.atlassian.plugins</groupId> |
| 585 | + <artifactId>atlassian-plugins-core</artifactId> |
| 586 | + <version>4.0.0-m029</version> |
| 587 | + </dependency> |
| 588 | + <dependency> |
| 589 | + <groupId>io.atlassian.fugue</groupId> |
| 590 | + <artifactId>fugue</artifactId> |
| 591 | + <version>4.7.2</version> |
| 592 | + </dependency> |
555 | 593 | <dependency>
|
556 | 594 | <groupId>com.squareup.okhttp3</groupId>
|
557 | 595 | <artifactId>logging-interceptor</artifactId>
|
558 |
| - <version>3.14.9</version> |
| 596 | + <version>4.9.2</version> |
559 | 597 | </dependency>
|
560 | 598 | <dependency>
|
561 | 599 | <groupId>com.squareup.okhttp3</groupId>
|
562 | 600 | <artifactId>okhttp</artifactId>
|
563 | 601 | <version>4.9.2</version>
|
564 | 602 | </dependency>
|
| 603 | + <dependency> |
| 604 | + <groupId>org.jenkins-ci</groupId> |
| 605 | + <artifactId>symbol-annotation</artifactId> |
| 606 | + <version>1.21</version> |
| 607 | + </dependency> |
565 | 608 |
|
566 | 609 | <dependency>
|
567 | 610 | <groupId>com.github.docker-java</groupId>
|
|
661 | 704 | <dependency>
|
662 | 705 | <groupId>com.google.errorprone</groupId>
|
663 | 706 | <artifactId>error_prone_annotations</artifactId>
|
664 |
| - <version>2.9.0</version> |
| 707 | + <version>2.10.0</version> |
665 | 708 | </dependency>
|
666 | 709 | <dependency>
|
667 | 710 | <groupId>com.google.protobuf</groupId>
|
|
686 | 729 | <dependency>
|
687 | 730 | <groupId>jaxen</groupId>
|
688 | 731 | <artifactId>jaxen</artifactId>
|
689 |
| - <version>1.1.6</version> |
| 732 | + <version>1.2.0</version> |
690 | 733 | </dependency>
|
691 | 734 | <dependency>
|
692 | 735 | <groupId>org.apache.commons</groupId>
|
|
772 | 815 | <dependency>
|
773 | 816 | <groupId>org.json</groupId>
|
774 | 817 | <artifactId>json</artifactId>
|
775 |
| - <version>20210307</version> |
| 818 | + <version>20211205</version> |
776 | 819 | </dependency>
|
777 | 820 | <dependency>
|
778 | 821 | <groupId>joda-time</groupId>
|
|
0 commit comments