Commit 10bcd0f 1 parent e5fab2d commit 10bcd0f Copy full SHA for 10bcd0f
File tree 7 files changed +66
-2
lines changed
7 files changed +66
-2
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ Add changes here for all PR submitted to the 2.x branch.
96
96
- [[ #6145 ] ( https://github.com/apache/incubator-seata/pull/6145 )] upgrade jettison to 1.5.4
97
97
- [[ #6144 ] ( https://github.com/apache/incubator-seata/pull/6144 )] upgrade nacos client to 1.4.6
98
98
- [[ #6147 ] ( https://github.com/apache/incubator-seata/pull/6147 )] upgrade kafka-clients to 3.6.1
99
+ - [[ #6339 ] ( https://github.com/apache/incubator-seata/pull/6339 )] upgrade spring mvc and tomcat.embed
99
100
- [[ #6340 ] ( https://github.com/apache/incubator-seata/pull/6340 )] upgrade and tidy some dependencies
100
101
- [[ #6350 ] ( https://github.com/apache/incubator-seata/pull/6350 )] remove enableDegrade properties
101
102
- [[ #6349 ] ( https://github.com/apache/incubator-seata/pull/6349 )] transfer dockerhub repo
Original file line number Diff line number Diff line change 96
96
- [[ #6144 ] ( https://github.com/apache/incubator-seata/pull/6144 )] 升级Nacos依赖版本至1.4.6
97
97
- [[ #6145 ] ( https://github.com/apache/incubator-seata/pull/6145 )] 升级 jettison依赖版本至1.5.4
98
98
- [[ #6147 ] ( https://github.com/apache/incubator-seata/pull/6147 )] 升级 kafka-clients依赖至3.6.1
99
+ - [[ #6339 ] ( https://github.com/apache/incubator-seata/pull/6339 )] 升级 spring mvc 和 tomcat.embed 依赖
99
100
- [[ #6340 ] ( https://github.com/apache/incubator-seata/pull/6340 )] 升级和整理依赖
100
101
- [[ #6350 ] ( https://github.com/apache/incubator-seata/pull/6350 )] 移除 enableDegrade 配置
101
102
Original file line number Diff line number Diff line change 34
34
<properties >
35
35
<spring-boot-for-server .version>2.7.17</spring-boot-for-server .version>
36
36
<spring-framework-for-server .version>5.3.30</spring-framework-for-server .version>
37
+ <snakeyaml-for-server .version>2.0</snakeyaml-for-server .version>
38
+ <tomcat-embed .version>9.0.83</tomcat-embed .version>
37
39
</properties >
38
40
39
41
<dependencyManagement >
70
72
<type >pom</type >
71
73
<scope >import</scope >
72
74
</dependency >
75
+ <dependency >
76
+ <groupId >org.yaml</groupId >
77
+ <artifactId >snakeyaml</artifactId >
78
+ <version >${snakeyaml-for-server.version} </version >
79
+ </dependency >
80
+ <dependency >
81
+ <groupId >org.apache.tomcat.embed</groupId >
82
+ <artifactId >tomcat-embed-core</artifactId >
83
+ <version >${tomcat-embed.version} </version >
84
+ </dependency >
73
85
</dependencies >
74
86
</dependencyManagement >
75
87
89
101
<artifactId >spring-boot-starter-web</artifactId >
90
102
<exclusions >
91
103
<exclusion >
92
- <artifactId >snakeyaml</artifactId >
104
+ <groupId >org.apache.tomcat.embed</groupId >
105
+ <artifactId >tomcat-embed-core</artifactId >
106
+ </exclusion >
107
+ <exclusion >
93
108
<groupId >org.yaml</groupId >
109
+ <artifactId >snakeyaml</artifactId >
94
110
</exclusion >
95
111
</exclusions >
96
112
</dependency >
125
141
<artifactId >jjwt-jackson</artifactId >
126
142
<scope >runtime</scope >
127
143
</dependency >
144
+ <dependency >
145
+ <groupId >org.apache.tomcat.embed</groupId >
146
+ <artifactId >tomcat-embed-core</artifactId >
147
+ </dependency >
128
148
</dependencies >
129
149
<profiles >
130
150
<profile >
Original file line number Diff line number Diff line change 119
119
<kotlin .version>1.4.32</kotlin .version>
120
120
<kotlin-coroutines .version>1.4.3</kotlin-coroutines .version>
121
121
122
+ <!-- # for web -->
123
+ <spring-webmvc .version>5.3.26</spring-webmvc .version>
124
+ <tomcat-embed .version>9.0.83</tomcat-embed .version>
125
+
122
126
<!-- # for test -->
123
127
<mockito .version>4.11.0</mockito .version>
124
128
<assertj-core .version>3.12.2</assertj-core .version>
157
161
<groupId >org.springframework</groupId >
158
162
<artifactId >spring-framework-bom</artifactId >
159
163
</exclusion >
164
+ <exclusion >
165
+ <groupId >org.apache.tomcat.embed</groupId >
166
+ <artifactId >tomcat-embed-core</artifactId >
167
+ </exclusion >
160
168
</exclusions >
161
169
<type >pom</type >
162
170
<scope >import</scope >
773
781
<artifactId >janino</artifactId >
774
782
<version >${janino-version} </version >
775
783
</dependency >
784
+
785
+ <!-- web -->
786
+ <dependency >
787
+ <groupId >org.springframework</groupId >
788
+ <artifactId >spring-webmvc</artifactId >
789
+ <version >${spring-webmvc.version} </version >
790
+ </dependency >
791
+ <dependency >
792
+ <groupId >org.apache.tomcat.embed</groupId >
793
+ <artifactId >tomcat-embed-core</artifactId >
794
+ </dependency >
776
795
</dependencies >
777
796
</dependencyManagement >
778
797
</project >
Original file line number Diff line number Diff line change 34
34
<properties >
35
35
<spring-boot-for-server .version>2.7.17</spring-boot-for-server .version>
36
36
<spring-framework-for-server .version>5.3.30</spring-framework-for-server .version>
37
+ <snakeyaml-for-server .version>2.0</snakeyaml-for-server .version>
38
+ <tomcat-embed .version>9.0.83</tomcat-embed .version>
37
39
</properties >
38
40
39
41
<dependencyManagement >
70
72
<type >pom</type >
71
73
<scope >import</scope >
72
74
</dependency >
75
+ <dependency >
76
+ <groupId >org.yaml</groupId >
77
+ <artifactId >snakeyaml</artifactId >
78
+ <version >${snakeyaml-for-server.version} </version >
79
+ </dependency >
80
+ <dependency >
81
+ <groupId >org.apache.tomcat.embed</groupId >
82
+ <artifactId >tomcat-embed-core</artifactId >
83
+ <version >${tomcat-embed.version} </version >
84
+ </dependency >
73
85
</dependencies >
74
86
</dependencyManagement >
75
87
84
96
<groupId >org.apache.logging.log4j</groupId >
85
97
</exclusion >
86
98
<exclusion >
87
- <artifactId >snakeyaml</artifactId >
99
+ <groupId >org.apache.tomcat.embed</groupId >
100
+ <artifactId >tomcat-embed-core</artifactId >
101
+ </exclusion >
102
+ <exclusion >
88
103
<groupId >org.yaml</groupId >
104
+ <artifactId >snakeyaml</artifactId >
89
105
</exclusion >
90
106
</exclusions >
91
107
</dependency >
257
273
<groupId >org.codehaus.janino</groupId >
258
274
<artifactId >janino</artifactId >
259
275
</dependency >
276
+ <dependency >
277
+ <groupId >org.apache.tomcat.embed</groupId >
278
+ <artifactId >tomcat-embed-core</artifactId >
279
+ </dependency >
260
280
</dependencies >
261
281
262
282
<build >
Original file line number Diff line number Diff line change 41
41
</build >
42
42
43
43
<dependencies >
44
+ <!-- The actual spring-related dependencies that take effect are from the seata-dependencies module, not the seata-server module-->
44
45
<dependency >
45
46
<groupId >org.apache.seata</groupId >
46
47
<artifactId >seata-server</artifactId >
Original file line number Diff line number Diff line change 49
49
<artifactId >seata-tm</artifactId >
50
50
<version >${project.version} </version >
51
51
</dependency >
52
+
53
+ <!-- The actual spring-related dependencies that take effect are from the seata-dependencies module, not the seata-server module-->
52
54
<dependency >
53
55
<groupId >${project.groupId} </groupId >
54
56
<artifactId >seata-server</artifactId >
You can’t perform that action at this time.
0 commit comments