This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push: new 47c100805 Bump commons-parent from 65 to 66 47c100805 is described below commit 47c100805ea26cb8d013b537559db4b241f13c20 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Feb 3 13:50:15 2024 -0500 Bump commons-parent from 65 to 66 - Add Maven property project.build.outputTimestamp for build reproducibility - Suppress SpotBugs CT_CONSTRUCTOR_THROW for now --- pom.xml | 2 +- src/conf/spotbugs-exclude-filter.xml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index da43ce718..b1e2fad0b 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.commons</groupId> <artifactId>commons-parent</artifactId> - <version>65</version> + <version>66</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>commons-lang3</artifactId> diff --git a/src/conf/spotbugs-exclude-filter.xml b/src/conf/spotbugs-exclude-filter.xml index 00dc1f3cb..6ff15c47c 100644 --- a/src/conf/spotbugs-exclude-filter.xml +++ b/src/conf/spotbugs-exclude-filter.xml @@ -36,6 +36,11 @@ </Or> </Match> + <Match> + <!-- TODO ? --> + <Bug pattern="CT_CONSTRUCTOR_THROW" /> + </Match> + <!-- TODO Can any of these be done without breaking binary compatibility? --> <Match> <Class name="org.apache.commons.lang3.reflect.FieldUtils" />