Skip to content

Commit fea9c8b

Browse files
committed
migrate spring-bootfrom 2 to 3
1 parent 40110c6 commit fea9c8b

File tree

1 file changed

+41
-48
lines changed

1 file changed

+41
-48
lines changed

pom.xml

Lines changed: 41 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,12 @@
461461
<version>${version.spring-boot-maven-plugin}</version>
462462
<type>maven-plugin</type>
463463
<scope>provided</scope>
464+
<exclusions>
465+
<exclusion>
466+
<groupId>org.antlr</groupId>
467+
<artifactId>antlr4-runtime</artifactId>
468+
</exclusion>
469+
</exclusions>
464470
</dependency>
465471
<dependency>
466472
<groupId>org.apache.maven.plugins</groupId>
@@ -494,6 +500,10 @@
494500
<groupId>com.google.guava</groupId>
495501
<artifactId>guava</artifactId>
496502
</exclusion>
503+
<exclusion>
504+
<groupId>org.antlr</groupId>
505+
<artifactId>antlr4-runtime</artifactId>
506+
</exclusion>
497507
</exclusions>
498508
</dependency>
499509
<dependency>
@@ -507,6 +517,10 @@
507517
<groupId>com.beust</groupId>
508518
<artifactId>jcommander</artifactId>
509519
</exclusion>
520+
<exclusion>
521+
<groupId>org.antlr</groupId>
522+
<artifactId>antlr4-runtime</artifactId>
523+
</exclusion>
510524
</exclusions>
511525
</dependency>
512526
<dependency>
@@ -905,12 +919,32 @@
905919
<artifactId>maven-checkstyle-plugin</artifactId>
906920
<type>maven-plugin</type>
907921
<scope>provided</scope>
922+
<exclusions>
923+
<exclusion>
924+
<groupId>com.google.guava</groupId>
925+
<artifactId>guava</artifactId>
926+
</exclusion>
927+
<exclusion>
928+
<groupId>org.antlr</groupId>
929+
<artifactId>antlr4-runtime</artifactId>
930+
</exclusion>
931+
</exclusions>
908932
</dependency>
909933
<dependency>
910934
<groupId>org.apache.maven.plugins</groupId>
911935
<artifactId>maven-pmd-plugin</artifactId>
912936
<type>maven-plugin</type>
913937
<scope>provided</scope>
938+
<exclusions>
939+
<exclusion>
940+
<groupId>com.beust</groupId>
941+
<artifactId>jcommander</artifactId>
942+
</exclusion>
943+
<exclusion>
944+
<groupId>org.antlr</groupId>
945+
<artifactId>antlr4-runtime</artifactId>
946+
</exclusion>
947+
</exclusions>
914948
</dependency>
915949
<dependency>
916950
<groupId>org.apache.maven.plugins</groupId>
@@ -998,62 +1032,32 @@
9981032
<groupId>org.hibernate.orm</groupId>
9991033
<artifactId>hibernate-core</artifactId>
10001034
<exclusions>
1001-
<exclusion>
1002-
<groupId>org.antlr</groupId>
1003-
<artifactId>antlr-runtime4</artifactId>
1004-
</exclusion>
10051035
<exclusion>
10061036
<groupId>org.antlr</groupId>
10071037
<artifactId>antlr4-runtime</artifactId>
10081038
</exclusion>
10091039
</exclusions>
10101040
</dependency>
1011-
<!--
1012-
<dependency>
1013-
<groupId>org.hibernate.orm</groupId>
1014-
<artifactId>hibernate-envers</artifactId>
1015-
</dependency>
1016-
-->
10171041
<dependency>
10181042
<groupId>org.hibernate.orm</groupId>
10191043
<artifactId>hibernate-hikaricp</artifactId>
10201044
<exclusions>
1021-
<exclusion>
1022-
<groupId>org.antlr</groupId>
1023-
<artifactId>antlr-runtime4</artifactId>
1024-
</exclusion>
10251045
<exclusion>
10261046
<groupId>org.antlr</groupId>
10271047
<artifactId>antlr4-runtime</artifactId>
10281048
</exclusion>
10291049
</exclusions>
10301050
</dependency>
1031-
<!--
1032-
<dependency>
1033-
<groupId>org.hibernate.orm</groupId>
1034-
<artifactId>hibernate-jcache</artifactId>
1035-
</dependency>
1036-
-->
10371051
<dependency>
10381052
<groupId>org.hibernate.orm</groupId>
10391053
<artifactId>hibernate-jpamodelgen</artifactId>
10401054
<exclusions>
1041-
<exclusion>
1042-
<groupId>org.antlr</groupId>
1043-
<artifactId>antlr-runtime4</artifactId>
1044-
</exclusion>
10451055
<exclusion>
10461056
<groupId>org.antlr</groupId>
10471057
<artifactId>antlr4-runtime</artifactId>
10481058
</exclusion>
10491059
</exclusions>
10501060
</dependency>
1051-
<!--
1052-
<dependency>
1053-
<groupId>org.hibernate.orm</groupId>
1054-
<artifactId>hibernate-proxool</artifactId>
1055-
</dependency>
1056-
-->
10571061
<dependency>
10581062
<groupId>org.hibernate.orm</groupId>
10591063
<artifactId>hibernate-testing</artifactId>
@@ -1070,30 +1074,16 @@
10701074
<groupId>org.wildfly.transaction</groupId>
10711075
<artifactId>wildfly-transaction-client-jakarta</artifactId>
10721076
</exclusion>
1073-
<exclusion>
1074-
<groupId>org.antlr</groupId>
1075-
<artifactId>antlr-runtime4</artifactId>
1076-
</exclusion>
10771077
<exclusion>
10781078
<groupId>org.antlr</groupId>
10791079
<artifactId>antlr4-runtime</artifactId>
10801080
</exclusion>
10811081
</exclusions>
10821082
</dependency>
1083-
<!--
1084-
<dependency>
1085-
<groupId>org.hibernate.orm</groupId>
1086-
<artifactId>hibernate-vibur</artifactId>
1087-
</dependency>
1088-
-->
10891083
<dependency>
10901084
<groupId>org.hibernate.validator</groupId>
10911085
<artifactId>hibernate-validator</artifactId>
10921086
<exclusions>
1093-
<exclusion>
1094-
<groupId>org.antlr</groupId>
1095-
<artifactId>antlr-runtime4</artifactId>
1096-
</exclusion>
10971087
<exclusion>
10981088
<groupId>org.antlr</groupId>
10991089
<artifactId>antlr4-runtime</artifactId>
@@ -1104,10 +1094,6 @@
11041094
<groupId>org.hibernate.validator</groupId>
11051095
<artifactId>hibernate-validator-annotation-processor</artifactId>
11061096
<exclusions>
1107-
<exclusion>
1108-
<groupId>org.antlr</groupId>
1109-
<artifactId>antlr-runtime4</artifactId>
1110-
</exclusion>
11111097
<exclusion>
11121098
<groupId>org.antlr</groupId>
11131099
<artifactId>antlr4-runtime</artifactId>
@@ -1118,6 +1104,13 @@
11181104
<groupId>org.antlr</groupId>
11191105
<artifactId>antlr-runtime</artifactId>
11201106
</dependency>
1107+
<!--
1108+
<dependency>
1109+
<groupId>org.antlr</groupId>
1110+
<artifactId>antlr4-runtime</artifactId>
1111+
<scope>provided</scope>
1112+
</dependency>
1113+
-->
11211114
</dependencies>
11221115

11231116
<build>

0 commit comments

Comments
 (0)