Skip to content

Commit 9a5325e

Browse files
committed
fix(pom): restore 4-space indentation formatting with xmllint
1 parent 3a98bc1 commit 9a5325e

1 file changed

Lines changed: 3 additions & 70 deletions

File tree

pom.xml

Lines changed: 3 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,20 @@
88
<version>3.0.x.20260630-SNAPSHOT</version>
99
<description>基于byte-buddy生成Spring MVC 框架的Controller</description>
1010
<packaging>jar</packaging>
11-
1211
<!-- 开源协议采用 Apache 2.0 协议 -->
1312
<licenses>
1413
<license>
1514
<name>The Apache Software License, Version 2.0</name>
1615
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
1716
</license>
1817
</licenses>
19-
2018
<!-- 源码仓库(SCM)信息 -->
2119
<scm>
2220
<connection>scm:git:https://github.com/easy-4-java/${project.artifactId}.git</connection>
2321
<developerConnection>scm:git:https://github.com/easy-4-java/${project.artifactId}.git</developerConnection>
2422
<url>https://github.com/easy-4-java/${project.artifactId}</url>
2523
<tag>${project.artifactId}</tag>
2624
</scm>
27-
2825
<!-- 开发者信息 -->
2926
<developers>
3027
<developer>
@@ -37,29 +34,25 @@
3734
<timezone>+8</timezone>
3835
</developer>
3936
</developers>
40-
4137
<profiles>
4238
<profile>
4339
<id>disable-javadoc-doclint</id>
4440
<activation>
4541
<jdk>[1.8,)</jdk>
4642
</activation>
4743
<properties>
48-
<!-- Dependency versions -->
44+
<!-- Dependency versions -->
4945
<additionalparam>-Xdoclint:none</additionalparam>
5046
<maven.test.skip>true</maven.test.skip>
5147
</properties>
5248
</profile>
53-
5449
<profile>
5550
<id>release</id>
5651
</profile>
57-
5852
<profile>
5953
<id>central</id>
6054
</profile>
6155
</profiles>
62-
6356
<properties>
6457
<!-- ═══ 第一段: 基础属性(自然排序)═══ -->
6558
<java.version>21</java.version>
@@ -105,174 +98,144 @@
10598
<maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version>
10699
<maven-war-plugin.version>3.4.0</maven-war-plugin.version>
107100
</properties>
108-
109101
<dependencyManagement>
110102
<dependencies>
111-
112103
<dependency>
113104
<groupId>org.projectlombok</groupId>
114105
<artifactId>lombok</artifactId>
115106
<version>${lombok.version}</version>
116107
</dependency>
117-
118108
<dependency>
119109
<groupId>junit</groupId>
120110
<artifactId>junit</artifactId>
121111
<version>${junit.version}</version>
122112
</dependency>
123-
124113
<dependency>
125114
<groupId>org.slf4j</groupId>
126115
<artifactId>slf4j-api</artifactId>
127116
<version>${slf4j.version}</version>
128117
</dependency>
129-
130118
<dependency>
131119
<groupId>org.slf4j</groupId>
132120
<artifactId>slf4j-simple</artifactId>
133121
<version>${slf4j.version}</version>
134122
<scope>test</scope>
135123
</dependency>
136-
137124
<dependency>
138125
<groupId>org.apache.commons</groupId>
139126
<artifactId>commons-lang3</artifactId>
140127
<version>${commons-lang3.version}</version>
141128
</dependency>
142-
143129
<dependency>
144130
<groupId>commons-io</groupId>
145131
<artifactId>commons-io</artifactId>
146132
<version>${commons-io.version}</version>
147133
</dependency>
148-
149134
<dependency>
150135
<groupId>commons-beanutils</groupId>
151136
<artifactId>commons-beanutils</artifactId>
152137
<version>${commons-beanutils.version}</version>
153138
</dependency>
154-
155139
<dependency>
156140
<groupId>net.bytebuddy</groupId>
157141
<artifactId>byte-buddy</artifactId>
158142
<version>${byte-buddy.version}</version>
159143
</dependency>
160-
161144
<dependency>
162145
<groupId>org.springframework</groupId>
163146
<artifactId>spring-webmvc</artifactId>
164147
<version>${spring.version}</version>
165148
</dependency>
166-
167149
<dependency>
168150
<groupId>org.springframework</groupId>
169151
<artifactId>spring-webflux</artifactId>
170152
<version>${spring.version}</version>
171153
</dependency>
172-
173154
<dependency>
174155
<groupId>org.springframework</groupId>
175156
<artifactId>spring-context</artifactId>
176157
<version>${spring.version}</version>
177158
</dependency>
178-
179159
<dependency>
180160
<groupId>io.springfox</groupId>
181161
<artifactId>springfox-core</artifactId>
182162
<version>${springfox.version}</version>
183163
</dependency>
184-
185164
<dependency>
186165
<groupId>io.swagger</groupId>
187166
<artifactId>swagger-annotations</artifactId>
188167
<version>${swagger.version}</version>
189168
</dependency>
190-
191169
<dependency>
192170
<groupId>jakarta.servlet</groupId>
193171
<artifactId>jakarta.servlet-api</artifactId>
194172
<version>${jakarta-servlet.version}</version>
195173
</dependency>
196-
197174
<dependency>
198175
<groupId>jakarta.validation</groupId>
199176
<artifactId>jakarta.validation-api</artifactId>
200177
<version>${jakarta-validation.version}</version>
201178
</dependency>
202179
</dependencies>
203180
</dependencyManagement>
204-
205181
<dependencies>
206-
207182
<dependency>
208183
<groupId>org.projectlombok</groupId>
209184
<artifactId>lombok</artifactId>
210185
<scope>provided</scope>
211186
</dependency>
212-
213187
<dependency>
214188
<groupId>junit</groupId>
215189
<artifactId>junit</artifactId>
216190
<scope>test</scope>
217191
</dependency>
218-
219192
<dependency>
220193
<groupId>org.slf4j</groupId>
221194
<artifactId>slf4j-api</artifactId>
222195
</dependency>
223-
224196
<dependency>
225197
<groupId>commons-io</groupId>
226198
<artifactId>commons-io</artifactId>
227199
<scope>test</scope>
228200
</dependency>
229-
230201
<dependency>
231202
<groupId>commons-beanutils</groupId>
232203
<artifactId>commons-beanutils</artifactId>
233204
<scope>test</scope>
234205
</dependency>
235-
236206
<dependency>
237207
<groupId>org.apache.commons</groupId>
238208
<artifactId>commons-lang3</artifactId>
239209
</dependency>
240-
241210
<dependency>
242211
<groupId>net.bytebuddy</groupId>
243212
<artifactId>byte-buddy</artifactId>
244213
</dependency>
245-
246214
<dependency>
247215
<groupId>org.springframework</groupId>
248216
<artifactId>spring-webmvc</artifactId>
249217
<scope>provided</scope>
250218
</dependency>
251-
252219
<dependency>
253220
<groupId>org.springframework</groupId>
254221
<artifactId>spring-webflux</artifactId>
255222
<scope>provided</scope>
256223
</dependency>
257-
258224
<dependency>
259225
<groupId>org.springframework</groupId>
260226
<artifactId>spring-context</artifactId>
261227
<scope>provided</scope>
262228
</dependency>
263-
264229
<dependency>
265230
<groupId>io.springfox</groupId>
266231
<artifactId>springfox-core</artifactId>
267232
<scope>provided</scope>
268233
</dependency>
269-
270234
<dependency>
271235
<groupId>io.swagger</groupId>
272236
<artifactId>swagger-annotations</artifactId>
273237
<scope>provided</scope>
274238
</dependency>
275-
276239
<dependency>
277240
<groupId>jakarta.validation</groupId>
278241
<artifactId>jakarta.validation-api</artifactId>
@@ -295,30 +258,22 @@
295258
<finalName>${project.artifactId}</finalName>
296259
<pluginManagement>
297260
<plugins>
298-
299261
<plugin>
300-
301262
<groupId>org.apache.maven.plugins</groupId>
302263
<artifactId>maven-compiler-plugin</artifactId>
303264
<version>${maven-compiler-plugin.version}</version>
304265
<configuration>
305266
<release>${java.version}</release>
306-
307267
<encoding>${project.build.sourceEncoding}</encoding>
308-
309268
<maxmem>512M</maxmem>
310269
</configuration>
311270
</plugin>
312-
313271
<plugin>
314-
315272
<groupId>org.apache.maven.plugins</groupId>
316273
<artifactId>maven-deploy-plugin</artifactId>
317274
<version>${maven-deploy-plugin.version}</version>
318275
</plugin>
319-
320276
<plugin>
321-
322277
<groupId>org.apache.maven.plugins</groupId>
323278
<artifactId>maven-enforcer-plugin</artifactId>
324279
<version>${maven-enforcer-plugin.version}</version>
@@ -337,18 +292,16 @@
337292
</requireMavenVersion>
338293
<requireJavaVersion>
339294
<message>
340-
You are running an older version of Java. This application requires at least JDK ${java.version}.
341-
</message>
295+
You are running an older version of Java. This application requires at least JDK ${java.version}.
296+
</message>
342297
<version>[${java.version}.0,)</version>
343298
</requireJavaVersion>
344299
</rules>
345300
</configuration>
346301
</execution>
347302
</executions>
348303
</plugin>
349-
350304
<plugin>
351-
352305
<groupId>org.apache.maven.plugins</groupId>
353306
<artifactId>maven-gpg-plugin</artifactId>
354307
<version>${maven-gpg-plugin.version}</version>
@@ -362,26 +315,20 @@
362315
</execution>
363316
</executions>
364317
</plugin>
365-
366318
<plugin>
367-
368319
<groupId>org.apache.maven.plugins</groupId>
369320
<artifactId>maven-install-plugin</artifactId>
370321
<version>${maven-install-plugin.version}</version>
371322
</plugin>
372-
373323
<plugin>
374-
375324
<groupId>org.apache.maven.plugins</groupId>
376325
<artifactId>maven-resources-plugin</artifactId>
377326
<version>${maven-resources-plugin.version}</version>
378327
<configuration>
379328
<encoding>${project.build.sourceEncoding}</encoding>
380329
</configuration>
381330
</plugin>
382-
383331
<plugin>
384-
385332
<groupId>org.apache.maven.plugins</groupId>
386333
<artifactId>maven-release-plugin</artifactId>
387334
<version>${maven-release-plugin.version}</version>
@@ -393,9 +340,7 @@
393340
<goals>deploy</goals>
394341
</configuration>
395342
</plugin>
396-
397343
<plugin>
398-
399344
<groupId>org.apache.maven.plugins</groupId>
400345
<artifactId>maven-source-plugin</artifactId>
401346
<version>${maven-source-plugin.version}</version>
@@ -411,9 +356,7 @@
411356
</execution>
412357
</executions>
413358
</plugin>
414-
415359
<plugin>
416-
417360
<groupId>org.apache.maven.plugins</groupId>
418361
<artifactId>maven-surefire-plugin</artifactId>
419362
<version>${maven-surefire-plugin.version}</version>
@@ -432,9 +375,7 @@
432375
</excludes>
433376
</configuration>
434377
</plugin>
435-
436378
<plugin>
437-
438379
<groupId>org.apache.maven.plugins</groupId>
439380
<artifactId>maven-jar-plugin</artifactId>
440381
<version>${maven-jar-plugin.version}</version>
@@ -450,9 +391,7 @@
450391
</archive>
451392
</configuration>
452393
</plugin>
453-
454394
<plugin>
455-
456395
<groupId>org.apache.maven.plugins</groupId>
457396
<artifactId>maven-javadoc-plugin</artifactId>
458397
<version>${maven-javadoc-plugin.version}</version>
@@ -471,7 +410,6 @@
471410
</execution>
472411
</executions>
473412
</plugin>
474-
475413
<plugin>
476414
<groupId>org.sonatype.plugins</groupId>
477415
<artifactId>nexus-staging-maven-plugin</artifactId>
@@ -489,9 +427,7 @@
489427
</plugins>
490428
</pluginManagement>
491429
<plugins>
492-
493430
<plugin>
494-
495431
<groupId>org.jacoco</groupId>
496432
<artifactId>jacoco-maven-plugin</artifactId>
497433
<version>${maven-jacoco-plugin.version}</version>
@@ -533,15 +469,12 @@
533469
</execution>
534470
</executions>
535471
</plugin>
536-
537472
<plugin>
538-
539473
<groupId>org.apache.maven.plugins</groupId>
540474
<artifactId>maven-compiler-plugin</artifactId>
541475
<version>${maven-compiler-plugin.version}</version>
542476
<configuration>
543477
<release>${java.version}</release>
544-
545478
<parameters>true</parameters>
546479
<encoding>${project.build.sourceEncoding}</encoding>
547480
<maxmem>512M</maxmem>

0 commit comments

Comments
 (0)