Skip to content

Commit e9bdbfb

Browse files
committed
work
1 parent 61ed3c0 commit e9bdbfb

File tree

2 files changed

+146
-8
lines changed

2 files changed

+146
-8
lines changed

pom.xml

Lines changed: 117 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
<jsoup.version>1.14.2</jsoup.version>
176176

177177
<!-- 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>
179179

180180
<!-- Docker -->
181181
<docker-compose-maven-plugin.version>4.0.0</docker-compose-maven-plugin.version>
@@ -481,127 +481,190 @@
481481
<version>${jsoup.version}</version>
482482
</dependency>
483483

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+
484528
<!-- maven plugins -->
485529
<dependency>
486530
<groupId>org.apache.maven.plugins</groupId>
487531
<artifactId>maven-enforcer-plugin</artifactId>
488532
<version>${maven-enforcer-plugin.version}</version>
489533
<type>maven-plugin</type>
534+
<scope>provided</scope>
490535
</dependency>
491536
<dependency>
492537
<groupId>org.apache.maven.plugins</groupId>
493538
<artifactId>maven-invoker-plugin</artifactId>
494539
<version>${maven-invoker-plugin.version}</version>
495540
<type>maven-plugin</type>
541+
<scope>provided</scope>
496542
</dependency>
497543
<dependency>
498544
<groupId>com.dkanejs.maven.plugins</groupId>
499545
<artifactId>docker-compose-maven-plugin</artifactId>
500546
<version>${docker-compose-maven-plugin.version}</version>
501547
<type>maven-plugin</type>
548+
<scope>provided</scope>
502549
</dependency>
503550
<dependency>
504551
<groupId>org.apache.maven.plugins</groupId>
505552
<artifactId>maven-clean-plugin</artifactId>
506553
<version>${maven-clean-plugin.version}</version>
507554
<type>maven-plugin</type>
555+
<scope>provided</scope>
508556
</dependency>
509557
<dependency>
510558
<groupId>org.apache.maven.plugins</groupId>
511559
<artifactId>maven-dependency-plugin</artifactId>
512560
<version>${maven-dependency-plugin.version}</version>
513561
<type>maven-plugin</type>
562+
<scope>provided</scope>
514563
</dependency>
515564
<dependency>
516565
<groupId>org.apache.maven.plugins</groupId>
517566
<artifactId>maven-compiler-plugin</artifactId>
518567
<version>${maven-compiler-plugin.version}</version>
519568
<type>maven-plugin</type>
569+
<scope>provided</scope>
520570
</dependency>
521571
<dependency>
522572
<groupId>org.springframework.boot</groupId>
523573
<artifactId>spring-boot-maven-plugin</artifactId>
524574
<version>${spring-boot-maven-plugin.version}</version>
525575
<type>maven-plugin</type>
576+
<scope>provided</scope>
526577
</dependency>
527578
<dependency>
528579
<groupId>org.apache.maven.plugins</groupId>
529580
<artifactId>maven-site-plugin</artifactId>
530581
<version>${maven-site-plugin.version}</version>
531582
<type>maven-plugin</type>
583+
<scope>provided</scope>
532584
</dependency>
533585
<dependency>
534586
<groupId>org.apache.maven.plugins</groupId>
535587
<artifactId>maven-project-info-reports-plugin</artifactId>
536588
<version>${maven-project-info-reports-plugin.version}</version>
537589
<type>maven-plugin</type>
590+
<scope>provided</scope>
538591
</dependency>
539592
<dependency>
540593
<groupId>org.apache.maven.plugins</groupId>
541594
<artifactId>maven-jxr-plugin</artifactId>
542595
<version>${maven-jxr-plugin.version}</version>
543596
<type>maven-plugin</type>
597+
<scope>provided</scope>
544598
</dependency>
545599
<dependency>
546600
<groupId>org.apache.maven.plugins</groupId>
547601
<artifactId>maven-checkstyle-plugin</artifactId>
548602
<version>${maven-checkstyle-plugin.version}</version>
549603
<type>maven-plugin</type>
604+
<scope>provided</scope>
550605
</dependency>
551606
<dependency>
552607
<groupId>com.github.spotbugs</groupId>
553608
<artifactId>spotbugs-maven-plugin</artifactId>
554609
<version>${spotbugs-maven-plugin.version}</version>
555610
<type>maven-plugin</type>
611+
<scope>provided</scope>
556612
</dependency>
557613
<dependency>
558614
<groupId>org.apache.maven.plugins</groupId>
559615
<artifactId>maven-pmd-plugin</artifactId>
560616
<version>${maven-pmd-plugin.version}</version>
561617
<type>maven-plugin</type>
618+
<scope>provided</scope>
562619
</dependency>
563620
<dependency>
564621
<groupId>org.apache.maven.plugins</groupId>
565622
<artifactId>maven-surefire-plugin</artifactId>
566623
<version>${maven-surefire-plugin.version}</version>
567624
<type>maven-plugin</type>
625+
<scope>provided</scope>
568626
</dependency>
569627
<dependency>
570628
<groupId>org.apache.maven.plugins</groupId>
571629
<artifactId>maven-surefire-report-plugin</artifactId>
572630
<version>${maven-surefire-report-plugin.version}</version>
573631
<type>maven-plugin</type>
632+
<scope>provided</scope>
574633
</dependency>
575634
<dependency>
576635
<groupId>org.asciidoctor</groupId>
577636
<artifactId>asciidoctor-maven-plugin</artifactId>
578637
<version>${asciidoctor-maven-plugin.version}</version>
579638
<type>maven-plugin</type>
639+
<scope>provided</scope>
580640
</dependency>
581641
<dependency>
582642
<groupId>org.liquibase</groupId>
583643
<artifactId>liquibase-maven-plugin</artifactId>
584644
<version>${liquibase-maven-plugin.version}</version>
585645
<type>maven-plugin</type>
646+
<scope>provided</scope>
586647
</dependency>
587648
<dependency>
588649
<groupId>org.apache.maven.plugins</groupId>
589650
<artifactId>maven-release-plugin</artifactId>
590651
<version>${maven-release-plugin.version}</version>
591652
<type>maven-plugin</type>
653+
<scope>provided</scope>
592654
</dependency>
593655
<dependency>
594656
<groupId>org.apache.maven.plugins</groupId>
595657
<artifactId>maven-deploy-plugin</artifactId>
596658
<version>${maven-deploy-plugin.version}</version>
597659
<type>maven-plugin</type>
660+
<scope>provided</scope>
598661
</dependency>
599662

600663
<dependency>
601664
<groupId>org.apache.maven.doxia</groupId>
602665
<artifactId>doxia-module-markdown</artifactId>
603666
<version>${doxia-module-markdown.version}</version>
604-
<scope>compile</scope>
667+
<scope>provided</scope>
605668
</dependency>
606669

607670
<dependency>
@@ -946,105 +1009,157 @@
9461009
<artifactId>htmlunit</artifactId>
9471010
</dependency>
9481011

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+
9491044
<!-- maven plugins -->
9501045
<dependency>
9511046
<groupId>org.apache.maven.plugins</groupId>
9521047
<artifactId>maven-enforcer-plugin</artifactId>
9531048
<type>maven-plugin</type>
1049+
<scope>provided</scope>
9541050
</dependency>
9551051
<dependency>
9561052
<groupId>org.apache.maven.plugins</groupId>
9571053
<artifactId>maven-invoker-plugin</artifactId>
9581054
<type>maven-plugin</type>
1055+
<scope>provided</scope>
9591056
</dependency>
9601057
<dependency>
9611058
<groupId>com.dkanejs.maven.plugins</groupId>
9621059
<artifactId>docker-compose-maven-plugin</artifactId>
9631060
<type>maven-plugin</type>
1061+
<scope>provided</scope>
9641062
</dependency>
9651063
<dependency>
9661064
<groupId>org.apache.maven.plugins</groupId>
9671065
<artifactId>maven-clean-plugin</artifactId>
9681066
<type>maven-plugin</type>
1067+
<scope>provided</scope>
9691068
</dependency>
9701069
<dependency>
9711070
<groupId>org.apache.maven.plugins</groupId>
9721071
<artifactId>maven-dependency-plugin</artifactId>
9731072
<type>maven-plugin</type>
1073+
<scope>provided</scope>
9741074
</dependency>
9751075
<dependency>
9761076
<groupId>org.apache.maven.plugins</groupId>
9771077
<artifactId>maven-compiler-plugin</artifactId>
9781078
<type>maven-plugin</type>
1079+
<scope>provided</scope>
9791080
</dependency>
9801081
<dependency>
9811082
<groupId>org.springframework.boot</groupId>
9821083
<artifactId>spring-boot-maven-plugin</artifactId>
9831084
<type>maven-plugin</type>
1085+
<scope>provided</scope>
9841086
</dependency>
9851087
<dependency>
9861088
<groupId>org.apache.maven.plugins</groupId>
9871089
<artifactId>maven-site-plugin</artifactId>
9881090
<type>maven-plugin</type>
1091+
<scope>provided</scope>
9891092
</dependency>
9901093
<dependency>
9911094
<groupId>org.apache.maven.plugins</groupId>
9921095
<artifactId>maven-project-info-reports-plugin</artifactId>
9931096
<type>maven-plugin</type>
1097+
<scope>provided</scope>
9941098
</dependency>
9951099
<dependency>
9961100
<groupId>org.apache.maven.plugins</groupId>
9971101
<artifactId>maven-jxr-plugin</artifactId>
9981102
<type>maven-plugin</type>
1103+
<scope>provided</scope>
9991104
</dependency>
10001105
<dependency>
10011106
<groupId>org.apache.maven.plugins</groupId>
10021107
<artifactId>maven-checkstyle-plugin</artifactId>
10031108
<type>maven-plugin</type>
1109+
<scope>provided</scope>
10041110
</dependency>
10051111
<dependency>
10061112
<groupId>com.github.spotbugs</groupId>
10071113
<artifactId>spotbugs-maven-plugin</artifactId>
10081114
<type>maven-plugin</type>
1115+
<scope>provided</scope>
10091116
</dependency>
10101117
<dependency>
10111118
<groupId>org.apache.maven.plugins</groupId>
10121119
<artifactId>maven-pmd-plugin</artifactId>
10131120
<type>maven-plugin</type>
1121+
<scope>provided</scope>
10141122
</dependency>
10151123
<dependency>
10161124
<groupId>org.apache.maven.plugins</groupId>
10171125
<artifactId>maven-surefire-plugin</artifactId>
10181126
<type>maven-plugin</type>
1127+
<scope>provided</scope>
10191128
</dependency>
10201129
<dependency>
10211130
<groupId>org.apache.maven.plugins</groupId>
10221131
<artifactId>maven-surefire-report-plugin</artifactId>
10231132
<type>maven-plugin</type>
1133+
<scope>provided</scope>
10241134
</dependency>
10251135
<dependency>
10261136
<groupId>org.asciidoctor</groupId>
10271137
<artifactId>asciidoctor-maven-plugin</artifactId>
10281138
<type>maven-plugin</type>
1139+
<scope>provided</scope>
10291140
</dependency>
10301141
<dependency>
10311142
<groupId>org.liquibase</groupId>
10321143
<artifactId>liquibase-maven-plugin</artifactId>
10331144
<type>maven-plugin</type>
1145+
<scope>provided</scope>
10341146
</dependency>
10351147
<dependency>
10361148
<groupId>org.apache.maven.plugins</groupId>
10371149
<artifactId>maven-release-plugin</artifactId>
10381150
<type>maven-plugin</type>
1151+
<scope>provided</scope>
10391152
</dependency>
10401153
<dependency>
10411154
<groupId>org.apache.maven.plugins</groupId>
10421155
<artifactId>maven-deploy-plugin</artifactId>
10431156
<type>maven-plugin</type>
1157+
<scope>provided</scope>
10441158
</dependency>
10451159
<dependency>
10461160
<groupId>org.apache.maven.doxia</groupId>
10471161
<artifactId>doxia-module-markdown</artifactId>
1162+
<scope>provided</scope>
10481163
</dependency>
10491164
</dependencies>
10501165

0 commit comments

Comments
 (0)