Skip to content

Commit 5f90c03

Browse files
committed
work
1 parent 6793037 commit 5f90c03

File tree

1 file changed

+47
-4
lines changed

1 file changed

+47
-4
lines changed

pom.xml

Lines changed: 47 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,10 @@
131131
<version.maven-source-plugin>3.2.1</version.maven-source-plugin>
132132
<version.maven-surefire-plugin>3.0.0-M7</version.maven-surefire-plugin>
133133
<version.maven-failsafe-plugin>3.0.0-M7</version.maven-failsafe-plugin>
134-
<version.maven-site-plugin>3.12.0</version.maven-site-plugin>
135-
<version.maven-project-info-reports-plugin>3.3.0</version.maven-project-info-reports-plugin>
136-
<version.maven-checkstyle-plugin>3.1.2</version.maven-checkstyle-plugin>
137-
<version.maven-checkstyle-plugin.checkstyle>10.4</version.maven-checkstyle-plugin.checkstyle>
134+
<version.maven-site-plugin>3.12.1</version.maven-site-plugin>
135+
<version.maven-project-info-reports-plugin>3.4.1</version.maven-project-info-reports-plugin>
136+
<version.maven-checkstyle-plugin>3.2.0</version.maven-checkstyle-plugin>
137+
<version.maven-checkstyle-plugin.checkstyle>10.5.0</version.maven-checkstyle-plugin.checkstyle>
138138
<version.maven-jxr-plugin>3.2.0</version.maven-jxr-plugin>
139139
<version.maven-pmd-plugin>3.17.0</version.maven-pmd-plugin>
140140
<version.maven-pmd-plugin.pmd>6.51.0</version.maven-pmd-plugin.pmd>
@@ -512,6 +512,12 @@
512512
<type>maven-plugin</type>
513513
<scope>provided</scope>
514514
</dependency>
515+
<dependency>
516+
<groupId>com.beust</groupId>
517+
<artifactId>jcommander</artifactId>
518+
<version>1.82</version>
519+
<scope>provided</scope>
520+
</dependency>
515521
<dependency>
516522
<groupId>org.apache.maven.plugins</groupId>
517523
<artifactId>maven-release-plugin</artifactId>
@@ -553,6 +559,22 @@
553559
<type>maven-plugin</type>
554560
<scope>provided</scope>
555561
</dependency>
562+
<dependency>
563+
<groupId>org.springframework.boot</groupId>
564+
<artifactId>spring-boot-starter-actuator</artifactId>
565+
<version>${project.parent.version}</version>
566+
<exclusions>
567+
<exclusion>
568+
<groupId>org.yaml</groupId>
569+
<artifactId>snakeyaml</artifactId>
570+
</exclusion>
571+
</exclusions>
572+
</dependency>
573+
<dependency>
574+
<groupId>org.yaml</groupId>
575+
<artifactId>snakeyaml</artifactId>
576+
<version>1.33</version>
577+
</dependency>
556578
</dependencies>
557579
</dependencyManagement>
558580

@@ -578,6 +600,16 @@
578600
<dependency>
579601
<groupId>org.springframework.boot</groupId>
580602
<artifactId>spring-boot-starter-actuator</artifactId>
603+
<exclusions>
604+
<exclusion>
605+
<groupId>org.yaml</groupId>
606+
<artifactId>snakeyaml</artifactId>
607+
</exclusion>
608+
</exclusions>
609+
</dependency>
610+
<dependency>
611+
<groupId>org.yaml</groupId>
612+
<artifactId>snakeyaml</artifactId>
581613
</dependency>
582614
<dependency>
583615
<groupId>org.springframework.boot</groupId>
@@ -843,6 +875,17 @@
843875
<artifactId>asciidoctor-maven-plugin</artifactId>
844876
<type>maven-plugin</type>
845877
<scope>provided</scope>
878+
<exclusions>
879+
<exclusion>
880+
<groupId>com.beust</groupId>
881+
<artifactId>jcommander</artifactId>
882+
</exclusion>
883+
</exclusions>
884+
</dependency>
885+
<dependency>
886+
<groupId>com.beust</groupId>
887+
<artifactId>jcommander</artifactId>
888+
<scope>provided</scope>
846889
</dependency>
847890
<dependency>
848891
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)