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-beanutils.git
The following commit(s) were added to refs/heads/master by this push: new 6b470681 Checkstyle: @author tags are deprecated 6b470681 is described below commit 6b4706813e5e74288275a08cec5d38d72575ab36 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Nov 23 08:35:08 2023 -0500 Checkstyle: @author tags are deprecated --- src/conf/checkstyle.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/conf/checkstyle.xml b/src/conf/checkstyle.xml index 35c330e6..9245c01c 100644 --- a/src/conf/checkstyle.xml +++ b/src/conf/checkstyle.xml @@ -61,4 +61,11 @@ limitations under the License. <property name="format" value="\s+$"/> <property name="message" value="Line has trailing spaces."/> </module> + <!-- @author tags are deprecated --> + <module name="RegexpSingleline"> + <property name="format" value="^\s+\*\s+@author\s" /> + <property name="message" value="Deprecated @author tag" /> + <property name="fileExtensions" value="java" /> + <property name="severity" value="warning" /> + </module> </module>