-
Notifications
You must be signed in to change notification settings - Fork 25
/
pom.xml
1914 lines (1831 loc) · 77.2 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>33</version>
</parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>79-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache Commons Parent</name>
<description>The Apache Commons Parent POM provides common settings for all Apache Commons components.</description>
<!-- Override inceptionYear in components, required by commons-build-plugin -->
<inceptionYear>2006</inceptionYear>
<url>https://commons.apache.org/proper/commons-parent/</url>
<!--
Site deployment
===============
Cannot define this here at present, see https://issues.apache.org/jira/browse/COMMONSSITE-26.
The following should be added to the component POM:
<distributionManagement>
<site>
<id>commons.site</id>
<name>Apache Commons Site SVN</name>
<url>scm:svn:${commons.scmPubUrl}</url>
</site>
</distributionManagement>
Alternatively you can map the component's existing site id to the
commons.scmPubServer property.
Coverage tool selection
=======================
There is optional profiles for JaCoCo.
These can be enabled independently on the command-line:
mvn site -Pjacoco
Or the component can define a default coverage tool by creating either (or both) of the following files:
src/site/resources/profile.jacoco
These can later be overridden by cancelling the profile:
mvn site -P!jacoco
-->
<properties>
<!-- Minimum Maven version required by the plugins -->
<minimalMavenBuildVersion>3.6.3</minimalMavenBuildVersion>
<!-- Minimum Java version required by build -->
<minimalJavaBuildVersion>8</minimalJavaBuildVersion>
<!-- configuration bits for cutting a release candidate, must be overridden by components -->
<!-- TODO How can we make project.build.outputTimestamp and changes.xml's release data the same? -->
<project.build.outputTimestamp>2024-10-22T11:11:44Z</project.build.outputTimestamp>
<commons.release.version>78</commons.release.version>
<commons.release.next>79</commons.release.next>
<commons.rc.version>RC1</commons.rc.version>
<commons.jira.id>COMMONSSITE</commons.jira.id>
<!-- Commons Release Plugin -->
<!-- Previous version of the component (used for reporting binary compatibility check)-->
<commons.bc.version>77</commons.bc.version>
<commons.release.isDistModule>true</commons.release.isDistModule>
<!--
Define the following in ~/.m2/settings.xml in an active profile:
(or provide them on the command line)
commons.releaseManagerName
commons.releaseManagerKey
-->
<!-- Default configuration for compiler source and target JVM -->
<!-- Do NOT change this; it must remain as 1.3 -->
<!--
It's important that child POMs don't need to change when the parent POM is updated.
At the time when these properties were introduced, the default Java version was 1.3.
Thus components that failed to define the version would not be affected by updates
to the Commons Parent or its parent the Apache pom.
Of course most if not all components now define the properties.
However it's still important to keep the properties as they effectively
force child poms to define the Java version they require.
-->
<maven.compiler.source>1.3</maven.compiler.source>
<maven.compiler.target>1.3</maven.compiler.target>
<!-- Java >= 9 -->
<commons.compiler.release>8</commons.compiler.release>
<!-- compiler and surefire plugin settings for "java" profiles -->
<commons.compiler.fork>false</commons.compiler.fork>
<commons.compiler.compilerVersion />
<commons.compiler.javac />
<commons.compiler.javadoc />
<!-- https://issues.apache.org/jira/projects/MSOURCES/issues/MSOURCES-143 -->
<version.maven-source-plugin>3.2.1</version.maven-source-plugin>
<!-- plugin versions (allows same value in reporting and build sections; also allows easy override) -->
<commons.animal-sniffer.version>1.24</commons.animal-sniffer.version>
<!-- Almost all signatures use version 1.0. Allow override just in case -->
<commons.animal-sniffer.signature.version>1.0</commons.animal-sniffer.signature.version>
<commons.assembly-plugin.version>3.7.1</commons.assembly-plugin.version>
<commons.build-helper.version>3.6.0</commons.build-helper.version>
<commons.build-plugin.version>1.14.1</commons.build-plugin.version>
<commons.changes.version>2.12.1</commons.changes.version>
<commons.checkstyle-plugin.version>3.6.0</commons.checkstyle-plugin.version>
<!-- Checkstyle 9.3 is the version compatible with Java 8 -->
<commons.checkstyle.version>9.3</commons.checkstyle.version>
<commons.compiler.version>3.13.0</commons.compiler.version>
<commons.cyclonedx.version>2.9.1</commons.cyclonedx.version>
<commons.spdx.version>0.7.4</commons.spdx.version>
<commons.failsafe.version>3.5.2</commons.failsafe.version>
<commons.felix.version>5.1.9</commons.felix.version>
<commons.jacoco.version>0.8.12</commons.jacoco.version>
<commons.japicmp.version>0.23.0</commons.japicmp.version>
<commons.jar-plugin.version>3.4.2</commons.jar-plugin.version>
<commons.javadoc.version>3.11.2</commons.javadoc.version>
<commons.jxr.version>3.6.0</commons.jxr.version>
<!-- Compatibility is broken starting with PMD plugin 3.25.0; see comment about maven-site-plugin. -->
<!-- Version 3.26.0: java.lang.NoSuchMethodError: org.apache.maven.doxia.sink.Sink.verbatim()V -->
<commons.pmd.version>3.24.0</commons.pmd.version>
<commons.pmd-impl.version>7.8.0</commons.pmd-impl.version>
<!-- maven-project-info-reports-plugin 3.7.0 is not compatible with 3.6.2 -->
<commons.project-info.version>3.6.2</commons.project-info.version>
<commons.rat.version>0.16.1</commons.rat.version>
<commons.release-plugin.version>1.8.3</commons.release-plugin.version>
<commons.scm-publish.version>1.1</commons.scm-publish.version>
<commons.buildnumber-plugin.version>3.2.1</commons.buildnumber-plugin.version>
<commons.moditect-maven-plugin.version>1.2.2.Final</commons.moditect-maven-plugin.version>
<commons.moditect-maven-plugin.addServiceUses>true</commons.moditect-maven-plugin.addServiceUses>
<!-- Warning: org.apache.felix:maven-bundle-plugin does not yet support bndlib 7 -->
<commons.biz.aQute.bndlib.version>6.4.1</commons.biz.aQute.bndlib.version>
<commons.junit.version>5.11.3</commons.junit.version>
<commons.junit-pioneer.version>2.3.0</commons.junit-pioneer.version>
<commons.jmh.version>1.37</commons.jmh.version>
<commons.asm.version>9.7.1</commons.asm.version>
<commons.taglist.version>3.2.1</commons.taglist.version>
<!--
Note: Maven site plugin 3.5.1 is the latest version but is not a direct replacement:
https://maven.apache.org/plugins/maven-site-plugin/migrate.html
In particular, adding CDATA to header and footer sections is not backwards compatible.
I.e. these have to be updated at the same time.
Also it causes the following errors:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-site-plugin:3.5.1:site (default-site) on project commons-parent:
Execution default-site of goal org.apache.maven.plugins:maven-site-plugin:3.5.1:site failed:
A required class was missing while executing org.apache.maven.plugins:maven-site-plugin:3.5.1:site: org/apache/maven/doxia/sink/impl/XhtmlBaseSink
This is because Apache POM 17 forces an older version of Doxia core:
https://mail-archives.apache.org/mod_mbox/maven-users/201602.mbox/%3C2337255.xU7aS9G1qr@herve-desktop%3E
The same error applies when running with version 3.5.
Since the version is defined as a property, the CP version can be overridden as follows if necessary:
mvn site -Dcommons.site-plugin.version=3.5.1
You will also need to add a dependency on Doxia core:
<artifactId>maven-site-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-core</artifactId>
<version>1.8</version>
</dependency>
</dependencies>
-->
<!--
Warning: maven-site-plugin 4.0.0-M3 requires an update to commons-skin site.vm for new variable names.
Warning: maven-site-plugin 3.20.0 is not compatible with 3.12.1.
Trying to use
org.apache.maven.skins:maven-fluido-skin:2.0.0-M11 and
org.apache.maven.plugins:maven-site-plugin:3.20.0
builds but scrambles the HTML output for the Changes and Jira report pages.
See also https://lists.apache.org/thread/pgj1gd75hx1dhq9spnl3c70xxt07corx
-->
<commons.site-plugin.version>3.12.1</commons.site-plugin.version>
<commons.spotbugs.plugin.version>4.8.6.6</commons.spotbugs.plugin.version>
<commons.spotbugs.impl.version>4.8.6</commons.spotbugs.impl.version>
<commons.surefire-report.version>3.5.2</commons.surefire-report.version>
<commons.surefire.version>3.5.2</commons.surefire.version>
<commons.wagon-ssh.version>3.5.3</commons.wagon-ssh.version>
<!-- Default values for the download-page generation by commons-build-plugin -->
<commons.release.name>${project.artifactId}-${commons.release.version}</commons.release.name>
<commons.release.desc />
<commons.binary.suffix>-bin</commons.binary.suffix>
<commons.release.2.name>${project.artifactId}-${commons.release.2.version}</commons.release.2.name>
<commons.release.2.desc />
<commons.release.2.binary.suffix>-bin</commons.release.2.binary.suffix>
<commons.release.3.name>${project.artifactId}-${commons.release.3.version}</commons.release.3.name>
<commons.release.3.desc />
<commons.release.3.binary.suffix>-bin</commons.release.3.binary.suffix>
<commons.release.4.desc />
<commons.release.4.binary.suffix>-bin</commons.release.4.binary.suffix>
<!-- Default values for jacoco-maven-plugin -->
<commons.jacoco.haltOnFailure>false</commons.jacoco.haltOnFailure>
<commons.jacoco.classRatio>1.00</commons.jacoco.classRatio>
<commons.jacoco.instructionRatio>1.00</commons.jacoco.instructionRatio>
<commons.jacoco.methodRatio>1.00</commons.jacoco.methodRatio>
<commons.jacoco.branchRatio>1.00</commons.jacoco.branchRatio>
<commons.jacoco.lineRatio>1.00</commons.jacoco.lineRatio>
<commons.jacoco.complexityRatio>1.00</commons.jacoco.complexityRatio>
<!-- The Commons component id is used on the distribution server, for example:
- Use dbcp instead of dbcp2.
- Use collections instead of collections4.
- Use lang instead of lang3.
- Use pool instead of pool2.
- and so on...
-->
<commons.componentid>parent</commons.componentid>
<!-- The package id is substring of the package name from o.a.commons.(.*)., for example:
- Use dbcp2 instead of dbcp.
- Use collections4 instead of collections.
- Use lang3 instead of lang.
- Use pool2 instead of pool.
- and so on...
-->
<commons.packageId>${project.artifactId}</commons.packageId>
<!-- JPMS -->
<commons.module.name>org.apache.commons.${commons.packageId}</commons.module.name>
<!-- Configuration properties for the OSGi maven-bundle-plugin -->
<commons.osgi.symbolicName>org.apache.commons.${commons.packageId}</commons.osgi.symbolicName>
<commons.osgi.export>org.apache.commons.*;version=${project.version};-noimport:=true</commons.osgi.export>
<commons.osgi.import>*</commons.osgi.import>
<commons.osgi.dynamicImport />
<commons.osgi.private />
<commons.osgi.excludeDependencies>true</commons.osgi.excludeDependencies>
<!-- location of any manifest file used by maven-jar-plugin -->
<commons.manifestfile>${project.build.directory}/osgi/MANIFEST.MF</commons.manifestfile>
<!--
Make the deployment protocol pluggable. This allows to switch to
other protocols like scpexe, which some users prefer over scp.
-->
<commons.deployment.protocol>scp</commons.deployment.protocol>
<!--
Encoding of Java source files: ensures that the compiler and
the javadoc generator use the right encoding. Subprojects may
overwrite this, if they are using another encoding.
-->
<commons.encoding>UTF-8</commons.encoding>
<!-- used in this pom to provide the Javadoc HTML file encoding -->
<commons.docEncoding>${commons.encoding}</commons.docEncoding>
<!-- Define source encoding for filtering; used by general plugins -->
<project.build.sourceEncoding>${commons.encoding}</project.build.sourceEncoding>
<!-- This is used by reporting plugins -->
<project.reporting.outputEncoding>${commons.encoding}</project.reporting.outputEncoding>
<!-- Javadoc link to Java API LTS versions. -->
<!-- Modern Javadoc versions redirect to newest site (Java 22) when you ask for older links like Java 8. -->
<commons.javadoc.java.link>https://docs.oracle.com/en/java/javase/21/docs/api/</commons.javadoc.java.link>
<commons.javadoc.javaee5.link>https://docs.oracle.com/javaee/5/api/</commons.javadoc.javaee5.link>
<commons.javadoc.javaee6.link>https://docs.oracle.com/javaee/6/api/</commons.javadoc.javaee6.link>
<commons.javadoc.javaee7.link>https://docs.oracle.com/javaee/7/api/</commons.javadoc.javaee7.link>
<commons.javadoc.javaee8.link>https://jakarta.ee/specifications/platform/8/apidocs/</commons.javadoc.javaee8.link>
<commons.javadoc.javaee9.link>https://jakarta.ee/specifications/platform/9/apidocs/</commons.javadoc.javaee9.link>
<commons.javadoc.javaee9.1.link>https://jakarta.ee/specifications/platform/9.1/apidocs/</commons.javadoc.javaee9.1.link>
<commons.javadoc.javaee10.link>https://jakarta.ee/specifications/platform/10/apidocs/</commons.javadoc.javaee10.link>
<commons.javadoc.javaee.link>${commons.javadoc.javaee8.link}</commons.javadoc.javaee.link>
<!-- Allow Clirr severity to be overriden by the command-line option -DminSeverity=level -->
<minSeverity>info</minSeverity>
<!-- Allow surefire-report aggregation to be easily configured for multi-module projects -->
<commons.surefire-report.aggregate>false</commons.surefire-report.aggregate>
<!-- Allow changes Jira report to be restricted to just the current version (plugin default is false) -->
<commons.changes.onlyCurrentVersion>false</commons.changes.onlyCurrentVersion>
<!-- Allow changes Jira report maxEntries to be overridden (plugin default 100) -->
<commons.changes.maxEntries>100</commons.changes.maxEntries>
<!-- Allow changes Jira report runOnlyAtExecutionRoot to be overridden (plugin default is false) -->
<commons.changes.runOnlyAtExecutionRoot>false</commons.changes.runOnlyAtExecutionRoot>
<!-- scm publish plugin configuration -->
<commons.site.cache>${user.home}/commons-sites</commons.site.cache>
<!-- value modules can override it -->
<commons.site.path>${commons.componentid}</commons.site.path>
<commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-${commons.componentid}</commons.scmPubUrl>
<commons.scmPubCheckoutDirectory>${commons.site.cache}/${commons.site.path}</commons.scmPubCheckoutDirectory>
<commons.scmPubServer>commons.site</commons.scmPubServer>
<!-- allow japicmp's breakBuildOnBinaryIncompatibleModifications
to be overridden, plugin's default is false -->
<commons.japicmp.breakBuildOnBinaryIncompatibleModifications>true</commons.japicmp.breakBuildOnBinaryIncompatibleModifications>
<commons.japicmp.breakBuildOnSourceIncompatibleModifications>false</commons.japicmp.breakBuildOnSourceIncompatibleModifications>
<commons.japicmp.ignoreMissingClasses>false</commons.japicmp.ignoreMissingClasses>
<!-- Commons Release plugin: dist dev site -->
<commons.distSvnStagingUrl>scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid}</commons.distSvnStagingUrl>
<commons.conf.dir>src/conf</commons.conf.dir>
<sonar.host.url>https://analysis.apache.org/</sonar.host.url>
<!-- allow override of changes.announcementFile and directory -->
<changes.announcementDirectory>.</changes.announcementDirectory>
<changes.announcementFile>RELEASE-NOTES.txt</changes.announcementFile>
</properties>
<mailingLists>
<!-- N.B. commons-site now uses the Apache POM so has its own copy of the mailing list definitions -->
<!--
Components should normally override the default mailing list report by using the comnand
mvn commons-build:mail-page
This generates the file src/site/xdoc/mail-lists.xml which when processed will replace the PIR version.
-->
<!-- Changes to this list should be synchronised with the commons build plugin -->
<mailingList>
<name>Commons User List</name>
<subscribe>user-subscribe@commons.apache.org</subscribe>
<unsubscribe>user-unsubscribe@commons.apache.org</unsubscribe>
<post>user@commons.apache.org</post>
<archive>https://mail-archives.apache.org/mod_mbox/commons-user/</archive>
<otherArchives>
<otherArchive>https://www.mail-archive.com/user@commons.apache.org/</otherArchive>
</otherArchives>
</mailingList>
<mailingList>
<name>Commons Dev List</name>
<subscribe>dev-subscribe@commons.apache.org</subscribe>
<unsubscribe>dev-unsubscribe@commons.apache.org</unsubscribe>
<post>dev@commons.apache.org</post>
<archive>https://mail-archives.apache.org/mod_mbox/commons-dev/</archive>
<otherArchives>
<otherArchive>https://www.mail-archive.com/dev@commons.apache.org/</otherArchive>
</otherArchives>
</mailingList>
<mailingList>
<name>Commons Issues List</name>
<subscribe>issues-subscribe@commons.apache.org</subscribe>
<unsubscribe>issues-unsubscribe@commons.apache.org</unsubscribe>
<archive>https://mail-archives.apache.org/mod_mbox/commons-issues/</archive>
<otherArchives>
<otherArchive>https://www.mail-archive.com/issues@commons.apache.org/</otherArchive>
</otherArchives>
</mailingList>
<mailingList>
<name>Commons Commits List</name>
<subscribe>commits-subscribe@commons.apache.org</subscribe>
<unsubscribe>commits-unsubscribe@commons.apache.org</unsubscribe>
<archive>https://mail-archives.apache.org/mod_mbox/commons-commits/</archive>
<otherArchives>
<otherArchive>https://www.mail-archive.com/commits@commons.apache.org/</otherArchive>
</otherArchives>
</mailingList>
<mailingList>
<name>Apache Announce List</name>
<subscribe>announce-subscribe@apache.org</subscribe>
<unsubscribe>announce-unsubscribe@apache.org</unsubscribe>
<archive>https://mail-archives.apache.org/mod_mbox/www-announce/</archive>
<otherArchives>
<otherArchive>https://www.mail-archive.com/announce@apache.org/</otherArchive>
</otherArchives>
</mailingList>
</mailingLists>
<!--
This section *must* be overwritten by subprojects. It is only to allow
a release of the commons-parent POM.
-->
<scm>
<connection>scm:git:http://gitbox.apache.org/repos/asf/commons-parent.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-parent.git</developerConnection>
<url>https://gitbox.apache.org/repos/asf?p=commons-parent.git</url>
</scm>
<issueManagement>
<system>jira</system>
<url>https://issues.apache.org/jira/browse/COMMONSSITE</url>
</issueManagement>
<ciManagement>
<system>GitHub</system>
<url>https://github.com/apache/commons-parent/actions</url>
</ciManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${commons.junit.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.junit-pioneer</groupId>
<artifactId>junit-pioneer</artifactId>
<version>${commons.junit-pioneer.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<!-- TODO find a better way to add N&L files to jars and test jars
See also maven-remote-resources-plugin configuration below.
-->
<defaultGoal>clean apache-rat:check verify site</defaultGoal>
<resources>
<!-- This is the default setting from the super-pom -->
<resource>
<directory>src/main/resources</directory>
</resource>
<!-- hack to ensure the N&L appear in jars -->
<resource>
<directory>${basedir}</directory>
<targetPath>META-INF</targetPath>
<includes>
<include>NOTICE.txt</include>
<include>LICENSE.txt</include>
<include>NOTICE</include>
<include>LICENSE</include>
</includes>
</resource>
</resources>
<!-- ensure test jars also get NOTICE & LICENSE files -->
<testResources>
<!-- This is the default setting from the super-pom -->
<testResource>
<directory>src/test/resources</directory>
</testResource>
<!-- hack to ensure the N&L appear in jars -->
<testResource>
<directory>${basedir}</directory>
<targetPath>META-INF</targetPath>
<includes>
<include>NOTICE.txt</include>
<include>LICENSE.txt</include>
<include>NOTICE</include>
<include>LICENSE</include>
</includes>
</testResource>
</testResources>
<pluginManagement>
<plugins>
<!-- org.apache.maven.plugins, alpha order by artifact id -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${commons.compiler.version}</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<encoding>${commons.encoding}</encoding>
<!--
fork is set true by the java-1.x profiles
This allows the use of a different version of the compiler from the
JDK being used to run Maven
-->
<fork>${commons.compiler.fork}</fork>
<!-- the following are only needed if fork is true -->
<compilerVersion>${commons.compiler.compilerVersion}</compilerVersion>
<executable>${commons.compiler.javac}</executable>
<compilerArgs>
<!-- Disable annotation processing during compile -->
<!-- Background: https://www.oracle.com/java/technologies/javase/23-relnote-issues.html#JDK-8321314 -->
<!-- Background: https://xdev.software/en/news/detail/discovering-the-perfect-java-supply-chain-attack-vector-and-how-it-got-fixed -->
<arg>-proc:none</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${commons.assembly-plugin.version}</version>
</plugin>
<!-- Apache parent includes docck -->
<!-- Apache parent: invoker -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${commons.javadoc.version}</version>
<configuration>
<!-- Keep only errors and warnings -->
<quiet>true</quiet>
<source>${maven.compiler.source}</source>
<javadocExecutable>${commons.compiler.javadoc}</javadocExecutable>
<encoding>${commons.encoding}</encoding>
<docencoding>${commons.docEncoding}</docencoding>
<!-- Prevent too many SCM changes -->
<notimestamp>true</notimestamp>
<linksource>true</linksource>
<links>
<link>${commons.javadoc.java.link}</link>
<link>${commons.javadoc.javaee.link}</link>
</links>
<additionalOptions>${commons.javadoc.options}</additionalOptions>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
<bottom>
Copyright © {inceptionYear}-{currentYear} {organizationName}. All rights reserved.</br>
<a href="${project.url}">${project.name}</a> |
<a href="${project.issueManagement.url}">Issue management</a> |
<a href="${project.scm.url}">Source repository</a>
</bottom>
</configuration>
</plugin>
<plugin>
<!-- TODO see above - find better way to add N&L files to jars and test jars -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
<configuration>
<!--
Apache parent POM automatically adds "LICENSE" and "NOTICE" files
to jars - duplicating the "LICENSE.txt" and "NOTICE.txt"
files that components already have.
-->
<skip>true</skip>
</configuration>
</plugin>
<!-- Apache parent: scm -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${commons.site-plugin.version}</version>
<configuration>
<!-- don't deploy site with maven-site-plugin -->
<skipDeploy>true</skipDeploy>
</configuration>
<dependencies>
<dependency>
<!-- add support for ssh/scp -->
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>${commons.wagon-ssh.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>attach-descriptor</id>
<goals>
<goal>attach-descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${commons.surefire.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${commons.failsafe.version}</version>
</plugin>
<!-- Other plugins, alpha order by groupId and artifactId -->
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>${commons.japicmp.version}</version>
<configuration>
<oldVersion>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${commons.bc.version}</version>
<type>jar</type>
</dependency>
</oldVersion>
<newVersion>
<file>
<path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
</file>
</newVersion>
<parameter>
<onlyModified>true</onlyModified>
<breakBuildOnBinaryIncompatibleModifications>${commons.japicmp.breakBuildOnBinaryIncompatibleModifications}</breakBuildOnBinaryIncompatibleModifications>
<breakBuildOnSourceIncompatibleModifications>${commons.japicmp.breakBuildOnSourceIncompatibleModifications}</breakBuildOnSourceIncompatibleModifications>
<!-- skip japicmp on "mvn site" - use "mvn package site" to include report -->
<ignoreMissingNewVersion>true</ignoreMissingNewVersion>
<reportOnlyFilename>true</reportOnlyFilename>
<skipPomModules>true</skipPomModules>
<ignoreMissingClasses>${commons.japicmp.ignoreMissingClasses}</ignoreMissingClasses>
<overrideCompatibilityChangeParameters>
<overrideCompatibilityChangeParameter>
<compatibilityChange>METHOD_NEW_DEFAULT</compatibilityChange>
<binaryCompatible>true</binaryCompatible>
<sourceCompatible>true</sourceCompatible>
<semanticVersionLevel>PATCH</semanticVersionLevel>
</overrideCompatibilityChangeParameter>
<!-- New interface methods must be default methods to maintain BC -->
<overrideCompatibilityChangeParameter>
<compatibilityChange>METHOD_ADDED_TO_INTERFACE</compatibilityChange>
<binaryCompatible>false</binaryCompatible>
<sourceCompatible>false</sourceCompatible>
<semanticVersionLevel>PATCH</semanticVersionLevel>
</overrideCompatibilityChangeParameter>
</overrideCompatibilityChangeParameters>
</parameter>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.commons</groupId>
<artifactId>commons-build-plugin</artifactId>
<version>${commons.build-plugin.version}</version>
<configuration>
<commons.release.name>${commons.release.name}</commons.release.name>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.commons</groupId>
<artifactId>commons-release-plugin</artifactId>
<version>${commons.release-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${commons.felix.version}</version>
<inherited>true</inherited>
<dependencies>
<dependency>
<!-- Fixes https://github.com/bndtools/bnd/issues/3903 seen with Commons CSV. -->
<groupId>biz.aQute.bnd</groupId>
<artifactId>biz.aQute.bndlib</artifactId>
<version>${commons.biz.aQute.bndlib.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<version>${commons.rat.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-artifact-plugin</artifactId>
<version>3.5.3</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${commons.build-helper.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>${commons.buildnumber-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<!-- Version 2.2 causes an NPE with Maven 3.3.9 -->
<version>2.18.0</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${commons.jacoco.version}</version>
<!-- Note that since JaCoCo relies on an agent to perform tests,
it changes the surefire arguments line. If a component also
needs to change the argument line of maven-surefire-plugin,
then it must add ${argLine} property (which is set by JaCoCo)
in the argLine configuration element of maven-surefire-plugin
to preserve JaCoCo settings. -->
<executions>
<execution>
<id>prepare-agent</id>
<phase>process-test-classes</phase>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>site</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule>
<element>BUNDLE</element>
<limits>
<limit>
<counter>CLASS</counter>
<value>COVEREDRATIO</value>
<minimum>${commons.jacoco.classRatio}</minimum>
</limit>
<limit>
<counter>INSTRUCTION</counter>
<value>COVEREDRATIO</value>
<minimum>${commons.jacoco.instructionRatio}</minimum>
</limit>
<limit>
<counter>METHOD</counter>
<value>COVEREDRATIO</value>
<minimum>${commons.jacoco.methodRatio}</minimum>
</limit>
<limit>
<counter>BRANCH</counter>
<value>COVEREDRATIO</value>
<minimum>${commons.jacoco.branchRatio}</minimum>
</limit>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>${commons.jacoco.lineRatio}</minimum>
</limit>
<limit>
<counter>COMPLEXITY</counter>
<value>COVEREDRATIO</value>
<minimum>${commons.jacoco.complexityRatio}</minimum>
</limit>
</limits>
</rule>
</rules>
<haltOnFailure>${commons.jacoco.haltOnFailure}</haltOnFailure>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${commons.project-info.version}</version>
<dependencies>
<!-- Fix org.apache.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 19 -->
<dependency>
<groupId>org.apache.bcel</groupId>
<artifactId>bcel</artifactId>
<version>6.10.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${commons.checkstyle-plugin.version}</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>${commons.checkstyle.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>${commons.spotbugs.plugin.version}</version>
<dependencies>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>${commons.spotbugs.impl.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>${commons.asm.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${commons.pmd.version}</version>
<dependencies>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>${commons.pmd-impl.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>${commons.pmd-impl.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-javascript</artifactId>
<version>${commons.pmd-impl.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-jsp</artifactId>
<version>${commons.pmd-impl.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<version>${commons.cyclonedx.version}</version>
<executions>
<execution>
<id>build-sbom-cyclonedx</id>
<phase>package</phase>
<goals>
<goal>makeAggregateBom</goal>
</goals>
</execution>
</executions>
<configuration>
<outputName>${project.artifactId}-${project.version}-bom</outputName>
</configuration>
</plugin>
<plugin>
<groupId>org.spdx</groupId>
<artifactId>spdx-maven-plugin</artifactId>
<version>${commons.spdx.version}</version>
<executions>
<execution>
<id>build-sbom-spdx</id>
<phase>package</phase>
<goals>
<goal>createSPDX</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>javancss-maven-plugin</artifactId>
<version>2.1</version>
<dependencies>
<!-- javancss 33.54 is used by default
<dependency>
<groupId>org.codehaus.javancss</groupId>
<artifactId>javancss</artifactId>
<version>33.54</version>
</dependency>
-->
</dependencies>
<configuration>
<excludes>
<!-- The latest javancss 33.54 in Maven Central fails on Java 8 sources and maybe even older Java versions -->
<exclude>**/*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>${commons.taglist.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<!-- Parent POM is released, so needs source archive for ASF mirrors -->
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/src.xml</descriptor>
</descriptors>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
</plugin>
<plugin>
<!--
- Copy LICENSE.txt and NOTICE.txt so that they are included
- in the -javadoc jar file for the component.
-->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>javadoc.resources</id>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<copy todir="${project.build.directory}/apidocs/META-INF">
<fileset dir="${basedir}">
<include name="LICENSE.txt" />
<include name="NOTICE.txt" />
<include name="LICENSE" />
<include name="NOTICE" />
</fileset>
</copy>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${commons.jar-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
<configuration>
<!-- Avoids an error when releasing the parent pom -->
<skipIfEmpty>true</skipIfEmpty>
</configuration>
</execution>
</executions>
<configuration>
<archive>
<manifestFile>${commons.manifestfile}</manifestFile>
<manifestEntries>
<Specification-Title>${project.name}</Specification-Title>
<Specification-Version>${project.version}</Specification-Version>
<Specification-Vendor>${project.organization.name}</Specification-Vendor>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
<Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
<X-Compile-Source-JDK>${maven.compiler.source}</X-Compile-Source-JDK>
<X-Compile-Target-JDK>${maven.compiler.target}</X-Compile-Target-JDK>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>create-source-jar</id>
<goals>
<goal>jar-no-fork</goal>
<goal>test-jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${commons.surefire.version}</version>
<configuration>
<!--
commons.surefire.java is normally empty.
It is defined by the java-1.x profiles to change the JVM used by Surefire
-->