Skip to content

Commit 34ed8db

Browse files
committed
fix(pom): normalize formatting with xmllint (4-space indent)
1 parent 3fd6ac7 commit 34ed8db

1 file changed

Lines changed: 1 addition & 16 deletions

File tree

pom.xml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,20 @@
88
<description>Agora Cloud Recording Java SDK (Spring Boot Independent)</description>
99
<version>1.0.x.20260630-SNAPSHOT</version>
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,7 +34,6 @@
3734
<timezone>+8</timezone>
3835
</developer>
3936
</developers>
40-
4137
<!-- 版本属性定义:Java 版本、依赖版本与 Maven 插件版本统一管理 -->
4238
<properties>
4339
<!-- ═══ 第一段: 基础属性(自然排序)═══ -->
@@ -63,9 +59,7 @@
6359
<maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version>
6460
<maven-source-plugin.version>3.4.0</maven-source-plugin.version>
6561
<maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version>
66-
6762
</properties>
68-
6963
<!-- 依赖版本统一管理(dependencyManagement) -->
7064
<dependencyManagement>
7165
<dependencies>
@@ -121,7 +115,6 @@
121115
</dependency>
122116
</dependencies>
123117
</dependencyManagement>
124-
125118
<!-- 项目依赖(dependencies) -->
126119
<dependencies>
127120
<!-- For Lombok -->
@@ -173,7 +166,6 @@
173166
<scope>test</scope>
174167
</dependency>
175168
</dependencies>
176-
177169
<!-- 制品发布仓库配置(distributionManagement) -->
178170
<distributionManagement>
179171
<repository>
@@ -185,20 +177,18 @@
185177
<url>https://packages.aliyun.com/6927b116e6c3e0425dbdf60d/maven/2624322-snapshot-3eoov3</url>
186178
</snapshotRepository>
187179
</distributionManagement>
188-
189180
<!-- 构建配置(Build) -->
190181
<build>
191182
<pluginManagement>
192183
<plugins>
193-
194184
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
195185
<plugin>
196186
<!-- 编译插件:编译主代码至主输出目录 -->
197187
<groupId>org.apache.maven.plugins</groupId>
198188
<artifactId>maven-compiler-plugin</artifactId>
199189
<version>${maven-compiler-plugin.version}</version>
200190
<configuration>
201-
</configuration>
191+
</configuration>
202192
</plugin>
203193
</plugins>
204194
</pluginManagement>
@@ -247,7 +237,6 @@
247237
</execution>
248238
</executions>
249239
</plugin>
250-
251240
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
252241
<plugin>
253242
<!-- 编译插件:编译主代码至主输出目录 -->
@@ -270,7 +259,6 @@
270259
</annotationProcessorPaths>
271260
</configuration>
272261
</plugin>
273-
274262
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin -->
275263
<plugin>
276264
<!-- 文档插件:发布时自动生成 Javadoc 并发布 -->
@@ -289,7 +277,6 @@
289277
</execution>
290278
</executions>
291279
</plugin>
292-
293280
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-plugin -->
294281
<plugin>
295282
<!-- 源码插件:发布时自动将源码同时发布 -->
@@ -307,15 +294,13 @@
307294
</plugin>
308295
</plugins>
309296
</build>
310-
311297
<!-- 构建 Profile 配置 -->
312298
<profiles>
313299
<!-- 发布到 Maven Central Portal:mvn -Pcentral deploy(GPG 签名 + 源码 + Javadoc + Central 发布插件) -->
314300
<profile>
315301
<id>central</id>
316302
<build>
317303
<plugins>
318-
319304
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-plugin -->
320305
<plugin>
321306
<!-- 签名插件:对制品进行 PGP 签名 -->

0 commit comments

Comments
 (0)