|
175 | 175 | <jsoup.version>1.14.2</jsoup.version> |
176 | 176 |
|
177 | 177 | <!-- SCM and Releasing --> |
178 | | - <maven.scm.version>1.13.0</maven.scm.version> |
| 178 | + <version.org.apache.maven.scm>1.13.0</version.org.apache.maven.scm> |
179 | 179 |
|
180 | 180 | <!-- Docker --> |
181 | 181 | <docker-compose-maven-plugin.version>4.0.0</docker-compose-maven-plugin.version> |
|
481 | 481 | <version>${jsoup.version}</version> |
482 | 482 | </dependency> |
483 | 483 |
|
| 484 | + <!-- SCM --> |
| 485 | + <dependency> |
| 486 | + <groupId>org.apache.maven.scm</groupId> |
| 487 | + <artifactId>maven-scm-providers-standard</artifactId> |
| 488 | + <version>${version.org.apache.maven.scm}</version> |
| 489 | + <type>pom</type> |
| 490 | + </dependency> |
| 491 | + <dependency> |
| 492 | + <groupId>org.apache.maven.scm</groupId> |
| 493 | + <artifactId>maven-scm-provider-svnexe</artifactId> |
| 494 | + <version>${version.org.apache.maven.scm}</version> |
| 495 | + <scope>provided</scope> |
| 496 | + </dependency> |
| 497 | + <dependency> |
| 498 | + <groupId>org.apache.maven.scm</groupId> |
| 499 | + <artifactId>maven-scm-provider-svn-commons</artifactId> |
| 500 | + <version>${version.org.apache.maven.scm}</version> |
| 501 | + <scope>provided</scope> |
| 502 | + </dependency> |
| 503 | + <dependency> |
| 504 | + <groupId>org.apache.maven.scm</groupId> |
| 505 | + <artifactId>maven-scm-provider-gitexe</artifactId> |
| 506 | + <version>${version.org.apache.maven.scm}</version> |
| 507 | + <scope>provided</scope> |
| 508 | + </dependency> |
| 509 | + <dependency> |
| 510 | + <groupId>org.apache.maven.scm</groupId> |
| 511 | + <artifactId>maven-scm-provider-git-commons</artifactId> |
| 512 | + <version>${version.org.apache.maven.scm}</version> |
| 513 | + <scope>provided</scope> |
| 514 | + </dependency> |
| 515 | + <dependency> |
| 516 | + <groupId>org.apache.maven.scm</groupId> |
| 517 | + <artifactId>maven-scm-manager-plexus</artifactId> |
| 518 | + <version>${version.org.apache.maven.scm}</version> |
| 519 | + <scope>provided</scope> |
| 520 | + </dependency> |
| 521 | + <dependency> |
| 522 | + <groupId>org.apache.maven.scm</groupId> |
| 523 | + <artifactId>maven-scm-client</artifactId> |
| 524 | + <version>${version.org.apache.maven.scm}</version> |
| 525 | + <scope>provided</scope> |
| 526 | + </dependency> |
| 527 | + |
484 | 528 | <!-- maven plugins --> |
485 | 529 | <dependency> |
486 | 530 | <groupId>org.apache.maven.plugins</groupId> |
487 | 531 | <artifactId>maven-enforcer-plugin</artifactId> |
488 | 532 | <version>${maven-enforcer-plugin.version}</version> |
489 | 533 | <type>maven-plugin</type> |
| 534 | + <scope>provided</scope> |
490 | 535 | </dependency> |
491 | 536 | <dependency> |
492 | 537 | <groupId>org.apache.maven.plugins</groupId> |
493 | 538 | <artifactId>maven-invoker-plugin</artifactId> |
494 | 539 | <version>${maven-invoker-plugin.version}</version> |
495 | 540 | <type>maven-plugin</type> |
| 541 | + <scope>provided</scope> |
496 | 542 | </dependency> |
497 | 543 | <dependency> |
498 | 544 | <groupId>com.dkanejs.maven.plugins</groupId> |
499 | 545 | <artifactId>docker-compose-maven-plugin</artifactId> |
500 | 546 | <version>${docker-compose-maven-plugin.version}</version> |
501 | 547 | <type>maven-plugin</type> |
| 548 | + <scope>provided</scope> |
502 | 549 | </dependency> |
503 | 550 | <dependency> |
504 | 551 | <groupId>org.apache.maven.plugins</groupId> |
505 | 552 | <artifactId>maven-clean-plugin</artifactId> |
506 | 553 | <version>${maven-clean-plugin.version}</version> |
507 | 554 | <type>maven-plugin</type> |
| 555 | + <scope>provided</scope> |
508 | 556 | </dependency> |
509 | 557 | <dependency> |
510 | 558 | <groupId>org.apache.maven.plugins</groupId> |
511 | 559 | <artifactId>maven-dependency-plugin</artifactId> |
512 | 560 | <version>${maven-dependency-plugin.version}</version> |
513 | 561 | <type>maven-plugin</type> |
| 562 | + <scope>provided</scope> |
514 | 563 | </dependency> |
515 | 564 | <dependency> |
516 | 565 | <groupId>org.apache.maven.plugins</groupId> |
517 | 566 | <artifactId>maven-compiler-plugin</artifactId> |
518 | 567 | <version>${maven-compiler-plugin.version}</version> |
519 | 568 | <type>maven-plugin</type> |
| 569 | + <scope>provided</scope> |
520 | 570 | </dependency> |
521 | 571 | <dependency> |
522 | 572 | <groupId>org.springframework.boot</groupId> |
523 | 573 | <artifactId>spring-boot-maven-plugin</artifactId> |
524 | 574 | <version>${spring-boot-maven-plugin.version}</version> |
525 | 575 | <type>maven-plugin</type> |
| 576 | + <scope>provided</scope> |
526 | 577 | </dependency> |
527 | 578 | <dependency> |
528 | 579 | <groupId>org.apache.maven.plugins</groupId> |
529 | 580 | <artifactId>maven-site-plugin</artifactId> |
530 | 581 | <version>${maven-site-plugin.version}</version> |
531 | 582 | <type>maven-plugin</type> |
| 583 | + <scope>provided</scope> |
532 | 584 | </dependency> |
533 | 585 | <dependency> |
534 | 586 | <groupId>org.apache.maven.plugins</groupId> |
535 | 587 | <artifactId>maven-project-info-reports-plugin</artifactId> |
536 | 588 | <version>${maven-project-info-reports-plugin.version}</version> |
537 | 589 | <type>maven-plugin</type> |
| 590 | + <scope>provided</scope> |
538 | 591 | </dependency> |
539 | 592 | <dependency> |
540 | 593 | <groupId>org.apache.maven.plugins</groupId> |
541 | 594 | <artifactId>maven-jxr-plugin</artifactId> |
542 | 595 | <version>${maven-jxr-plugin.version}</version> |
543 | 596 | <type>maven-plugin</type> |
| 597 | + <scope>provided</scope> |
544 | 598 | </dependency> |
545 | 599 | <dependency> |
546 | 600 | <groupId>org.apache.maven.plugins</groupId> |
547 | 601 | <artifactId>maven-checkstyle-plugin</artifactId> |
548 | 602 | <version>${maven-checkstyle-plugin.version}</version> |
549 | 603 | <type>maven-plugin</type> |
| 604 | + <scope>provided</scope> |
550 | 605 | </dependency> |
551 | 606 | <dependency> |
552 | 607 | <groupId>com.github.spotbugs</groupId> |
553 | 608 | <artifactId>spotbugs-maven-plugin</artifactId> |
554 | 609 | <version>${spotbugs-maven-plugin.version}</version> |
555 | 610 | <type>maven-plugin</type> |
| 611 | + <scope>provided</scope> |
556 | 612 | </dependency> |
557 | 613 | <dependency> |
558 | 614 | <groupId>org.apache.maven.plugins</groupId> |
559 | 615 | <artifactId>maven-pmd-plugin</artifactId> |
560 | 616 | <version>${maven-pmd-plugin.version}</version> |
561 | 617 | <type>maven-plugin</type> |
| 618 | + <scope>provided</scope> |
562 | 619 | </dependency> |
563 | 620 | <dependency> |
564 | 621 | <groupId>org.apache.maven.plugins</groupId> |
565 | 622 | <artifactId>maven-surefire-plugin</artifactId> |
566 | 623 | <version>${maven-surefire-plugin.version}</version> |
567 | 624 | <type>maven-plugin</type> |
| 625 | + <scope>provided</scope> |
568 | 626 | </dependency> |
569 | 627 | <dependency> |
570 | 628 | <groupId>org.apache.maven.plugins</groupId> |
571 | 629 | <artifactId>maven-surefire-report-plugin</artifactId> |
572 | 630 | <version>${maven-surefire-report-plugin.version}</version> |
573 | 631 | <type>maven-plugin</type> |
| 632 | + <scope>provided</scope> |
574 | 633 | </dependency> |
575 | 634 | <dependency> |
576 | 635 | <groupId>org.asciidoctor</groupId> |
577 | 636 | <artifactId>asciidoctor-maven-plugin</artifactId> |
578 | 637 | <version>${asciidoctor-maven-plugin.version}</version> |
579 | 638 | <type>maven-plugin</type> |
| 639 | + <scope>provided</scope> |
580 | 640 | </dependency> |
581 | 641 | <dependency> |
582 | 642 | <groupId>org.liquibase</groupId> |
583 | 643 | <artifactId>liquibase-maven-plugin</artifactId> |
584 | 644 | <version>${liquibase-maven-plugin.version}</version> |
585 | 645 | <type>maven-plugin</type> |
| 646 | + <scope>provided</scope> |
586 | 647 | </dependency> |
587 | 648 | <dependency> |
588 | 649 | <groupId>org.apache.maven.plugins</groupId> |
589 | 650 | <artifactId>maven-release-plugin</artifactId> |
590 | 651 | <version>${maven-release-plugin.version}</version> |
591 | 652 | <type>maven-plugin</type> |
| 653 | + <scope>provided</scope> |
592 | 654 | </dependency> |
593 | 655 | <dependency> |
594 | 656 | <groupId>org.apache.maven.plugins</groupId> |
595 | 657 | <artifactId>maven-deploy-plugin</artifactId> |
596 | 658 | <version>${maven-deploy-plugin.version}</version> |
597 | 659 | <type>maven-plugin</type> |
| 660 | + <scope>provided</scope> |
598 | 661 | </dependency> |
599 | 662 |
|
600 | 663 | <dependency> |
601 | 664 | <groupId>org.apache.maven.doxia</groupId> |
602 | 665 | <artifactId>doxia-module-markdown</artifactId> |
603 | 666 | <version>${doxia-module-markdown.version}</version> |
604 | | - <scope>compile</scope> |
| 667 | + <scope>provided</scope> |
605 | 668 | </dependency> |
606 | 669 |
|
607 | 670 | <dependency> |
|
946 | 1009 | <artifactId>htmlunit</artifactId> |
947 | 1010 | </dependency> |
948 | 1011 |
|
| 1012 | + <!-- scm --> |
| 1013 | + <dependency> |
| 1014 | + <groupId>org.apache.maven.scm</groupId> |
| 1015 | + <artifactId>maven-scm-provider-svnexe</artifactId> |
| 1016 | + <scope>provided</scope> |
| 1017 | + </dependency> |
| 1018 | + <dependency> |
| 1019 | + <groupId>org.apache.maven.scm</groupId> |
| 1020 | + <artifactId>maven-scm-provider-svn-commons</artifactId> |
| 1021 | + <scope>provided</scope> |
| 1022 | + </dependency> |
| 1023 | + <dependency> |
| 1024 | + <groupId>org.apache.maven.scm</groupId> |
| 1025 | + <artifactId>maven-scm-provider-gitexe</artifactId> |
| 1026 | + <scope>provided</scope> |
| 1027 | + </dependency> |
| 1028 | + <dependency> |
| 1029 | + <groupId>org.apache.maven.scm</groupId> |
| 1030 | + <artifactId>maven-scm-provider-git-commons</artifactId> |
| 1031 | + <scope>provided</scope> |
| 1032 | + </dependency> |
| 1033 | + <dependency> |
| 1034 | + <groupId>org.apache.maven.scm</groupId> |
| 1035 | + <artifactId>maven-scm-manager-plexus</artifactId> |
| 1036 | + <scope>provided</scope> |
| 1037 | + </dependency> |
| 1038 | + <dependency> |
| 1039 | + <groupId>org.apache.maven.scm</groupId> |
| 1040 | + <artifactId>maven-scm-client</artifactId> |
| 1041 | + <scope>provided</scope> |
| 1042 | + </dependency> |
| 1043 | + |
949 | 1044 | <!-- maven plugins --> |
950 | 1045 | <dependency> |
951 | 1046 | <groupId>org.apache.maven.plugins</groupId> |
952 | 1047 | <artifactId>maven-enforcer-plugin</artifactId> |
953 | 1048 | <type>maven-plugin</type> |
| 1049 | + <scope>provided</scope> |
954 | 1050 | </dependency> |
955 | 1051 | <dependency> |
956 | 1052 | <groupId>org.apache.maven.plugins</groupId> |
957 | 1053 | <artifactId>maven-invoker-plugin</artifactId> |
958 | 1054 | <type>maven-plugin</type> |
| 1055 | + <scope>provided</scope> |
959 | 1056 | </dependency> |
960 | 1057 | <dependency> |
961 | 1058 | <groupId>com.dkanejs.maven.plugins</groupId> |
962 | 1059 | <artifactId>docker-compose-maven-plugin</artifactId> |
963 | 1060 | <type>maven-plugin</type> |
| 1061 | + <scope>provided</scope> |
964 | 1062 | </dependency> |
965 | 1063 | <dependency> |
966 | 1064 | <groupId>org.apache.maven.plugins</groupId> |
967 | 1065 | <artifactId>maven-clean-plugin</artifactId> |
968 | 1066 | <type>maven-plugin</type> |
| 1067 | + <scope>provided</scope> |
969 | 1068 | </dependency> |
970 | 1069 | <dependency> |
971 | 1070 | <groupId>org.apache.maven.plugins</groupId> |
972 | 1071 | <artifactId>maven-dependency-plugin</artifactId> |
973 | 1072 | <type>maven-plugin</type> |
| 1073 | + <scope>provided</scope> |
974 | 1074 | </dependency> |
975 | 1075 | <dependency> |
976 | 1076 | <groupId>org.apache.maven.plugins</groupId> |
977 | 1077 | <artifactId>maven-compiler-plugin</artifactId> |
978 | 1078 | <type>maven-plugin</type> |
| 1079 | + <scope>provided</scope> |
979 | 1080 | </dependency> |
980 | 1081 | <dependency> |
981 | 1082 | <groupId>org.springframework.boot</groupId> |
982 | 1083 | <artifactId>spring-boot-maven-plugin</artifactId> |
983 | 1084 | <type>maven-plugin</type> |
| 1085 | + <scope>provided</scope> |
984 | 1086 | </dependency> |
985 | 1087 | <dependency> |
986 | 1088 | <groupId>org.apache.maven.plugins</groupId> |
987 | 1089 | <artifactId>maven-site-plugin</artifactId> |
988 | 1090 | <type>maven-plugin</type> |
| 1091 | + <scope>provided</scope> |
989 | 1092 | </dependency> |
990 | 1093 | <dependency> |
991 | 1094 | <groupId>org.apache.maven.plugins</groupId> |
992 | 1095 | <artifactId>maven-project-info-reports-plugin</artifactId> |
993 | 1096 | <type>maven-plugin</type> |
| 1097 | + <scope>provided</scope> |
994 | 1098 | </dependency> |
995 | 1099 | <dependency> |
996 | 1100 | <groupId>org.apache.maven.plugins</groupId> |
997 | 1101 | <artifactId>maven-jxr-plugin</artifactId> |
998 | 1102 | <type>maven-plugin</type> |
| 1103 | + <scope>provided</scope> |
999 | 1104 | </dependency> |
1000 | 1105 | <dependency> |
1001 | 1106 | <groupId>org.apache.maven.plugins</groupId> |
1002 | 1107 | <artifactId>maven-checkstyle-plugin</artifactId> |
1003 | 1108 | <type>maven-plugin</type> |
| 1109 | + <scope>provided</scope> |
1004 | 1110 | </dependency> |
1005 | 1111 | <dependency> |
1006 | 1112 | <groupId>com.github.spotbugs</groupId> |
1007 | 1113 | <artifactId>spotbugs-maven-plugin</artifactId> |
1008 | 1114 | <type>maven-plugin</type> |
| 1115 | + <scope>provided</scope> |
1009 | 1116 | </dependency> |
1010 | 1117 | <dependency> |
1011 | 1118 | <groupId>org.apache.maven.plugins</groupId> |
1012 | 1119 | <artifactId>maven-pmd-plugin</artifactId> |
1013 | 1120 | <type>maven-plugin</type> |
| 1121 | + <scope>provided</scope> |
1014 | 1122 | </dependency> |
1015 | 1123 | <dependency> |
1016 | 1124 | <groupId>org.apache.maven.plugins</groupId> |
1017 | 1125 | <artifactId>maven-surefire-plugin</artifactId> |
1018 | 1126 | <type>maven-plugin</type> |
| 1127 | + <scope>provided</scope> |
1019 | 1128 | </dependency> |
1020 | 1129 | <dependency> |
1021 | 1130 | <groupId>org.apache.maven.plugins</groupId> |
1022 | 1131 | <artifactId>maven-surefire-report-plugin</artifactId> |
1023 | 1132 | <type>maven-plugin</type> |
| 1133 | + <scope>provided</scope> |
1024 | 1134 | </dependency> |
1025 | 1135 | <dependency> |
1026 | 1136 | <groupId>org.asciidoctor</groupId> |
1027 | 1137 | <artifactId>asciidoctor-maven-plugin</artifactId> |
1028 | 1138 | <type>maven-plugin</type> |
| 1139 | + <scope>provided</scope> |
1029 | 1140 | </dependency> |
1030 | 1141 | <dependency> |
1031 | 1142 | <groupId>org.liquibase</groupId> |
1032 | 1143 | <artifactId>liquibase-maven-plugin</artifactId> |
1033 | 1144 | <type>maven-plugin</type> |
| 1145 | + <scope>provided</scope> |
1034 | 1146 | </dependency> |
1035 | 1147 | <dependency> |
1036 | 1148 | <groupId>org.apache.maven.plugins</groupId> |
1037 | 1149 | <artifactId>maven-release-plugin</artifactId> |
1038 | 1150 | <type>maven-plugin</type> |
| 1151 | + <scope>provided</scope> |
1039 | 1152 | </dependency> |
1040 | 1153 | <dependency> |
1041 | 1154 | <groupId>org.apache.maven.plugins</groupId> |
1042 | 1155 | <artifactId>maven-deploy-plugin</artifactId> |
1043 | 1156 | <type>maven-plugin</type> |
| 1157 | + <scope>provided</scope> |
1044 | 1158 | </dependency> |
1045 | 1159 | <dependency> |
1046 | 1160 | <groupId>org.apache.maven.doxia</groupId> |
1047 | 1161 | <artifactId>doxia-module-markdown</artifactId> |
| 1162 | + <scope>provided</scope> |
1048 | 1163 | </dependency> |
1049 | 1164 | </dependencies> |
1050 | 1165 |
|
|
0 commit comments