Skip to content

Commit f3adc27

Browse files
committed
Bump commons-parent from 64 to 66
- Add Maven property project.build.outputTimestamp for build reproducibility - Exclude for now CT_CONSTRUCTOR_THROW
1 parent b247fa7 commit f3adc27

3 files changed

Lines changed: 59 additions & 1 deletion

File tree

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.apache.commons</groupId>
2121
<artifactId>commons-parent</artifactId>
22-
<version>64</version>
22+
<version>66</version>
2323
</parent>
2424
<modelVersion>4.0.0</modelVersion>
2525
<groupId>commons-cli</groupId>
@@ -200,6 +200,7 @@
200200
</dependencies>
201201

202202
<properties>
203+
<project.build.outputTimestamp>2024-01-29T13:15:17Z</project.build.outputTimestamp>
203204
<maven.compiler.source>1.8</maven.compiler.source>
204205
<maven.compiler.target>1.8</maven.compiler.target>
205206
<commons.componentid>cli</commons.componentid>

src/changes/changes.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
<release version="1.7.0" date="202Y-MM-DD" description="New features and bug fixes">
2626
<!-- ADD -->
2727
<action type="add" issue="CLI-321" dev="ggregory" due-to="Claude Warren, Gary Gregory">Add and use a Converter interface and implementations without using BeanUtils #216.</action>
28+
<action type="add" dev="ggregory" due-to="Gary Gregory">Add Maven property project.build.outputTimestamp for build reproducibility.</action>
29+
<!-- UPDATE -->
30+
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump commons-parent from 64 to 66.</action>
2831
</release>
2932
<release version="1.6.0" date="2023-10-23" description="New features and bug fixes">
3033
<!-- FIX -->

src/conf/spotbugs-exclude-filter.xml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,55 @@
3535
returns="org.apache.commons.cli.OptionBuilder" />
3636
<Bug pattern="EI_EXPOSE_STATIC_REP2" />
3737
</Match>
38+
<!-- org.apache.commons.cli.HelpFormatter -->
39+
<Match>
40+
<!-- Note: public ivars are deprecated. -->
41+
<Class name="org.apache.commons.cli.HelpFormatter" />
42+
<Field name="defaultArgName" />
43+
<Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
44+
</Match>
45+
<Match>
46+
<!-- Note: public ivars are deprecated. -->
47+
<Class name="org.apache.commons.cli.HelpFormatter" />
48+
<Field name="defaultDescPad" />
49+
<Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
50+
</Match>
51+
<Match>
52+
<!-- Note: public ivars are deprecated. -->
53+
<Class name="org.apache.commons.cli.HelpFormatter" />
54+
<Field name="defaultLeftPad" />
55+
<Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
56+
</Match>
57+
<Match>
58+
<!-- Note: public ivars are deprecated. -->
59+
<Class name="org.apache.commons.cli.HelpFormatter" />
60+
<Field name="defaultLongOptPrefix" />
61+
<Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
62+
</Match>
63+
<Match>
64+
<!-- Note: public ivars are deprecated. -->
65+
<Class name="org.apache.commons.cli.HelpFormatter" />
66+
<Field name="defaultNewLine" />
67+
<Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
68+
</Match>
69+
<Match>
70+
<!-- Note: public ivars are deprecated. -->
71+
<Class name="org.apache.commons.cli.HelpFormatter" />
72+
<Field name="defaultOptPrefix" />
73+
<Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
74+
</Match>
75+
<Match>
76+
<!-- Note: public ivars are deprecated. -->
77+
<Class name="org.apache.commons.cli.HelpFormatter" />
78+
<Field name="defaultSyntaxPrefix" />
79+
<Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
80+
</Match>
81+
<Match>
82+
<!-- Note: public ivars are deprecated. -->
83+
<Class name="org.apache.commons.cli.HelpFormatter" />
84+
<Field name="defaultWidth" />
85+
<Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
86+
</Match>
3887

3988
<Match>
4089
<!-- TODO ? -->
@@ -46,4 +95,9 @@
4695
<Bug pattern="EI_EXPOSE_REP2" />
4796
</Match>
4897

98+
<Match>
99+
<!-- TODO ? -->
100+
<Bug pattern="CT_CONSTRUCTOR_THROW" />
101+
</Match>
102+
49103
</FindBugsFilter>

0 commit comments

Comments
 (0)