Skip to content

Commit 9b50675

Browse files
committed
fix(pom): normalize formatting with xmllint (4-space indent)
1 parent f06a5e1 commit 9b50675

1 file changed

Lines changed: 5 additions & 85 deletions

File tree

pom.xml

Lines changed: 5 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,18 @@
88
<description>Codex CLI Java SDK — subprocess integration for OpenAI Codex agent</description>
99
<version>3.0.x.20260630-SNAPSHOT</version>
1010
<packaging>jar</packaging>
11-
1211
<licenses>
1312
<license>
1413
<name>The Apache Software License, Version 2.0</name>
1514
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
1615
</license>
1716
</licenses>
18-
1917
<scm>
2018
<connection>scm:git:https://github.com/easy-4-java/${project.artifactId}.git</connection>
2119
<developerConnection>scm:git:https://github.com/easy-4-java/${project.artifactId}.git</developerConnection>
2220
<url>https://github.com/easy-4-java/${project.artifactId}</url>
2321
<tag>${project.artifactId}</tag>
2422
</scm>
25-
2623
<developers>
2724
<developer>
2825
<name>Loong Wan</name>
@@ -34,7 +31,6 @@
3431
<timezone>+8</timezone>
3532
</developer>
3633
</developers>
37-
3834
<properties>
3935
<!-- ═══ 第一段: 基础属性(自然排序)═══ -->
4036
<java.version>21</java.version>
@@ -66,9 +62,7 @@
6662
<maven-resources-plugin.version>3.5.0</maven-resources-plugin.version>
6763
<maven-source-plugin.version>3.4.0</maven-source-plugin.version>
6864
<maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version>
69-
7065
</properties>
71-
7266
<dependencyManagement>
7367
<dependencies>
7468
<!-- Jackson BOM -->
@@ -79,26 +73,22 @@
7973
<type>pom</type>
8074
<scope>import</scope>
8175
</dependency>
82-
8376
<dependency>
8477
<groupId>org.apache.commons</groupId>
8578
<artifactId>commons-exec</artifactId>
8679
<version>${commons-exec.version}</version>
8780
</dependency>
88-
8981
<dependency>
9082
<groupId>org.slf4j</groupId>
9183
<artifactId>slf4j-api</artifactId>
9284
<version>${slf4j.version}</version>
9385
</dependency>
94-
9586
<dependency>
9687
<groupId>org.projectlombok</groupId>
9788
<artifactId>lombok</artifactId>
9889
<version>${lombok.version}</version>
9990
<scope>provided</scope>
10091
</dependency>
101-
10292
<dependency>
10393
<groupId>org.junit.jupiter</groupId>
10494
<artifactId>junit-jupiter</artifactId>
@@ -107,37 +97,30 @@
10797
</dependency>
10898
</dependencies>
10999
</dependencyManagement>
110-
111100
<dependencies>
112-
113101
<dependency>
114102
<groupId>tools.jackson.core</groupId>
115103
<artifactId>jackson-databind</artifactId>
116104
</dependency>
117-
118105
<dependency>
119106
<groupId>org.apache.commons</groupId>
120107
<artifactId>commons-exec</artifactId>
121108
</dependency>
122-
123109
<dependency>
124110
<groupId>org.slf4j</groupId>
125111
<artifactId>slf4j-api</artifactId>
126112
</dependency>
127-
128113
<dependency>
129114
<groupId>org.projectlombok</groupId>
130115
<artifactId>lombok</artifactId>
131116
<scope>provided</scope>
132117
</dependency>
133-
134118
<dependency>
135119
<groupId>org.junit.jupiter</groupId>
136120
<artifactId>junit-jupiter</artifactId>
137121
<scope>test</scope>
138122
</dependency>
139123
</dependencies>
140-
141124
<distributionManagement>
142125
<repository>
143126
<id>2624322-release-6F6h6R</id>
@@ -148,34 +131,25 @@
148131
<url>https://packages.aliyun.com/6927b116e6c3e0425dbdf60d/maven/2624322-snapshot-3eoov3</url>
149132
</snapshotRepository>
150133
</distributionManagement>
151-
152134
<build>
153135
<pluginManagement>
154136
<plugins>
155-
156137
<plugin>
157-
158138
<groupId>org.apache.maven.plugins</groupId>
159139
<artifactId>maven-compiler-plugin</artifactId>
160140
<version>${maven-compiler-plugin.version}</version>
161141
<configuration>
162142
<release>${java.version}</release>
163-
164143
<encoding>${project.build.sourceEncoding}</encoding>
165-
166144
<maxmem>512M</maxmem>
167145
</configuration>
168146
</plugin>
169-
170147
<plugin>
171-
172148
<groupId>org.apache.maven.plugins</groupId>
173149
<artifactId>maven-deploy-plugin</artifactId>
174150
<version>${maven-deploy-plugin.version}</version>
175151
</plugin>
176-
177152
<plugin>
178-
179153
<groupId>org.apache.maven.plugins</groupId>
180154
<artifactId>maven-enforcer-plugin</artifactId>
181155
<version>${maven-enforcer-plugin.version}</version>
@@ -189,25 +163,22 @@
189163
<configuration>
190164
<rules>
191165
<requireMavenVersion>
192-
<message>
193-
<![CDATA[You are running an older version of Maven. This application requires at least Maven 4.]]></message>
166+
<message><![CDATA[You are running an older version of Maven. This application requires at least Maven 4.]]></message>
194167
<version>[4.0.0,)</version>
195168
</requireMavenVersion>
196169
<requireJavaVersion>
197170
<message>
198-
You are running an older version of Java. This application requires at least
199-
JDK ${java.version}.
200-
</message>
171+
You are running an older version of Java. This application requires at least
172+
JDK ${java.version}.
173+
</message>
201174
<version>[${java.version}.0,)</version>
202175
</requireJavaVersion>
203176
</rules>
204177
</configuration>
205178
</execution>
206179
</executions>
207180
</plugin>
208-
209181
<plugin>
210-
211182
<groupId>org.apache.maven.plugins</groupId>
212183
<artifactId>maven-gpg-plugin</artifactId>
213184
<version>${maven-gpg-plugin.version}</version>
@@ -221,26 +192,20 @@
221192
</execution>
222193
</executions>
223194
</plugin>
224-
225195
<plugin>
226-
227196
<groupId>org.apache.maven.plugins</groupId>
228197
<artifactId>maven-install-plugin</artifactId>
229198
<version>${maven-install-plugin.version}</version>
230199
</plugin>
231-
232200
<plugin>
233-
234201
<groupId>org.apache.maven.plugins</groupId>
235202
<artifactId>maven-resources-plugin</artifactId>
236203
<version>${maven-resources-plugin.version}</version>
237204
<configuration>
238205
<encoding>${project.build.sourceEncoding}</encoding>
239206
</configuration>
240207
</plugin>
241-
242208
<plugin>
243-
244209
<groupId>org.apache.maven.plugins</groupId>
245210
<artifactId>maven-release-plugin</artifactId>
246211
<version>${maven-release-plugin.version}</version>
@@ -252,9 +217,7 @@
252217
<goals>deploy</goals>
253218
</configuration>
254219
</plugin>
255-
256220
<plugin>
257-
258221
<groupId>org.apache.maven.plugins</groupId>
259222
<artifactId>maven-source-plugin</artifactId>
260223
<version>${maven-source-plugin.version}</version>
@@ -267,9 +230,7 @@
267230
</execution>
268231
</executions>
269232
</plugin>
270-
271233
<plugin>
272-
273234
<groupId>org.apache.maven.plugins</groupId>
274235
<artifactId>maven-surefire-plugin</artifactId>
275236
<version>${maven-surefire-plugin.version}</version>
@@ -288,9 +249,7 @@
288249
</excludes>
289250
</configuration>
290251
</plugin>
291-
292252
<plugin>
293-
294253
<groupId>org.apache.maven.plugins</groupId>
295254
<artifactId>maven-jar-plugin</artifactId>
296255
<version>${maven-jar-plugin.version}</version>
@@ -304,9 +263,7 @@
304263
</archive>
305264
</configuration>
306265
</plugin>
307-
308266
<plugin>
309-
310267
<groupId>org.apache.maven.plugins</groupId>
311268
<artifactId>maven-javadoc-plugin</artifactId>
312269
<version>${maven-javadoc-plugin.version}</version>
@@ -325,7 +282,6 @@
325282
</execution>
326283
</executions>
327284
</plugin>
328-
329285
<plugin>
330286
<groupId>org.sonatype.plugins</groupId>
331287
<artifactId>nexus-staging-maven-plugin</artifactId>
@@ -343,9 +299,7 @@
343299
</plugins>
344300
</pluginManagement>
345301
<plugins>
346-
347302
<plugin>
348-
349303
<groupId>org.jacoco</groupId>
350304
<artifactId>jacoco-maven-plugin</artifactId>
351305
<version>${maven-jacoco-plugin.version}</version>
@@ -387,15 +341,12 @@
387341
</execution>
388342
</executions>
389343
</plugin>
390-
391344
<plugin>
392-
393345
<groupId>org.apache.maven.plugins</groupId>
394346
<artifactId>maven-compiler-plugin</artifactId>
395347
<version>${maven-compiler-plugin.version}</version>
396348
<configuration>
397349
<release>${java.version}</release>
398-
399350
<parameters>true</parameters>
400351
<encoding>${project.build.sourceEncoding}</encoding>
401352
<maxmem>512M</maxmem>
@@ -410,7 +361,6 @@
410361
</plugin>
411362
</plugins>
412363
</build>
413-
414364
<profiles>
415365
<profile>
416366
<id>disable-javadoc-doclint</id>
@@ -420,96 +370,68 @@
420370
<properties>
421371
<!-- Dependency versions -->
422372
<additionalparam>-Xdoclint:none</additionalparam>
423-
424-
</properties>
373+
</properties>
425374
</profile>
426-
427375
<profile>
428376
<id>release</id>
429377
<build>
430378
<plugins>
431-
432379
<plugin>
433-
434380
<groupId>org.apache.maven.plugins</groupId>
435381
<artifactId>maven-enforcer-plugin</artifactId>
436382
</plugin>
437-
438383
<plugin>
439-
440384
<groupId>org.apache.maven.plugins</groupId>
441385
<artifactId>maven-compiler-plugin</artifactId>
442386
</plugin>
443-
444387
<plugin>
445-
446388
<groupId>org.apache.maven.plugins</groupId>
447389
<artifactId>maven-resources-plugin</artifactId>
448390
</plugin>
449-
450391
<plugin>
451-
452392
<groupId>org.apache.maven.plugins</groupId>
453393
<artifactId>maven-surefire-plugin</artifactId>
454394
</plugin>
455-
456395
<plugin>
457-
458396
<groupId>org.apache.maven.plugins</groupId>
459397
<artifactId>maven-jar-plugin</artifactId>
460398
</plugin>
461-
462399
<plugin>
463-
464400
<groupId>org.apache.maven.plugins</groupId>
465401
<artifactId>maven-source-plugin</artifactId>
466402
</plugin>
467-
468403
<plugin>
469-
470404
<groupId>org.apache.maven.plugins</groupId>
471405
<artifactId>maven-javadoc-plugin</artifactId>
472406
</plugin>
473-
474407
<plugin>
475-
476408
<groupId>org.apache.maven.plugins</groupId>
477409
<artifactId>maven-install-plugin</artifactId>
478410
</plugin>
479-
480411
<plugin>
481-
482412
<groupId>org.apache.maven.plugins</groupId>
483413
<artifactId>maven-gpg-plugin</artifactId>
484414
</plugin>
485-
486415
<plugin>
487-
488416
<groupId>org.apache.maven.plugins</groupId>
489417
<artifactId>maven-deploy-plugin</artifactId>
490418
</plugin>
491-
492419
<plugin>
493-
494420
<groupId>org.apache.maven.plugins</groupId>
495421
<artifactId>maven-release-plugin</artifactId>
496422
</plugin>
497-
498423
<plugin>
499424
<groupId>org.sonatype.plugins</groupId>
500425
<artifactId>nexus-staging-maven-plugin</artifactId>
501426
</plugin>
502427
</plugins>
503428
</build>
504429
</profile>
505-
506430
<profile>
507431
<id>central</id>
508432
<build>
509433
<plugins>
510-
511434
<plugin>
512-
513435
<groupId>org.apache.maven.plugins</groupId>
514436
<artifactId>maven-gpg-plugin</artifactId>
515437
<version>${maven-gpg-plugin.version}</version>
@@ -523,9 +445,7 @@
523445
</execution>
524446
</executions>
525447
</plugin>
526-
527448
<plugin>
528-
529449
<groupId>org.sonatype.central</groupId>
530450
<artifactId>central-publishing-maven-plugin</artifactId>
531451
<version>${maven-central-publishing-plugin.version}</version>

0 commit comments

Comments
 (0)