Skip to content

Commit eb2a0c4

Browse files
committed
Bump org.apache.commons:commons-parent from 81 to 93
Fix Apache RAT plugin console warnings
1 parent 44af943 commit eb2a0c4

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.apache.commons</groupId>
2525
<artifactId>commons-parent</artifactId>
26-
<version>81</version>
26+
<version>93</version>
2727
</parent>
2828
<artifactId>commons-pool2</artifactId>
2929
<version>2.13.0-SNAPSHOT</version>

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The <action> type attribute can be add,update,fix,remove.
7474
<action type="add" dev="ggregory" due-to="Gary Gregory">Add org.apache.commons.pool2.PooledObject.nonNull(PooledObject).</action>
7575
<action type="add" dev="ggregory" due-to="Gary Gregory">Add org.apache.commons.pool2.PooledObject.getObject(PooledObject).</action>
7676
<!-- UPDATE -->
77-
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump org.apache.commons:commons-parent from 79 to 81.</action>
77+
<action type="update" dev="ggregory" due-to="Gary Gregory">Bump org.apache.commons:commons-parent from 79 to 93.</action>
7878
<action type="update" dev="ggregory" due-to="Gary Gregory">[test] Bump commons-lang3 from 3.17.0 to 3.20.0.</action>
7979
</release>
8080
<release version="2.12.1" date="2025-01-19" description="This is a feature and maintenance release. Java 8 or later is required.">

src/conf/checkstyle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<module name="JavadocMethod">
6969
</module>
7070
<module name="JavadocVariable">
71-
<property name="scope" value="protected" />
71+
<property name="accessModifiers" value="protected" />
7272
</module>
7373
<module name="LeftCurly" />
7474
<module name="MethodParamPad"/>

src/conf/findbugs-exclude-filter.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,16 @@
210210
<!-- TODO ? -->
211211
<Bug pattern="CT_CONSTRUCTOR_THROW" />
212212
</Match>
213+
<Match>
214+
<!-- TODO as of parent 93? -->
215+
<Class name="org.apache.commons.pool2.impl.GenericKeyedObjectPool$ObjectDeque" />
216+
<Field name="makeObjectCount" />
217+
<Bug pattern="AT_NONATOMIC_64BIT_PRIMITIVE" />
218+
</Match>
219+
<Match>
220+
<!-- TODO as of parent 93 ? -->
221+
<Class name="org.apache.commons.pool2.impl.LinkedBlockingDeque" />
222+
<Field name="count" />
223+
<Bug pattern="AT_NONATOMIC_OPERATIONS_ON_SHARED_VARIABLE" />
224+
</Match>
213225
</FindBugsFilter>

0 commit comments

Comments
 (0)