This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch release-1.x
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git

commit 1a57099612f32e771943b26ff4407c0261ccf78a
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Dec 26 20:16:42 2024 +0000

    Prepare for the next release candidate
---
 checkstyle.xml | 59 ----------------------------------------------------------
 pom.xml        | 17 ++++++++---------
 2 files changed, 8 insertions(+), 68 deletions(-)

diff --git a/checkstyle.xml b/checkstyle.xml
deleted file mode 100644
index a4bc03d9..00000000
--- a/checkstyle.xml
+++ /dev/null
@@ -1,59 +0,0 @@
-<?xml version="1.0"?>
-<!--
-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.
--->
-
-<!DOCTYPE module PUBLIC
-    "-//Puppy Crawl//DTD Check Configuration 1.1//EN"
-    "http://www.puppycrawl.com/dtds/configuration_1_1.dtd";>
-
-<!-- commons lang customization of default Checkstyle behavior -->
-<module name="Checker">
-  <property name="localeLanguage" value="en"/>
-  <module name="JavadocPackage">
-    <property name="allowLegacy" value="false"/>
-  </module>
-  <module name="Header">
-    <property name="headerFile" value="${checkstyle.header.file}"/>
-  </module>
-  <module name="FileTabCharacter">
-    <property name="fileExtensions" value="java,xml"/>
-  </module>
-  <module name="TreeWalker">
-    <module name="AvoidStarImport"/>
-    <module name="RedundantImport"/>
-    <module name="UnusedImports"/>
-    <module name="NeedBraces"/>
-    <module name="RedundantThrows">
-      <property name="allowUnchecked" value="true"/>
-    </module>
-    <module name="LineLength">
-      <property name="max" value="120"/>
-    </module>
-    <module name="JavadocType">
-      <property name="scope" value="protected"/>
-    </module>
-    <module name="JavadocMethod">
-      <property name="scope" value="protected"/>
-      <property name="allowUndeclaredRTE" value="true"/>
-    </module>
-  </module>
-  <!-- Line with trailing spaces -->
-  <module name="RegexpSingleline">
-    <property name="format" value="\s+$"/>
-    <property name="message" value="Line has trailing spaces."/>
-  </module>
-</module>
diff --git a/pom.xml b/pom.xml
index 0158a0dd..81af4311 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>commons-beanutils</groupId>
   <artifactId>commons-beanutils</artifactId>
-  <version>1.10.0-SNAPSHOT</version>
+  <version>1.10.0</version>
   <name>Apache Commons BeanUtils</name>
 
   <inceptionYear>2000</inceptionYear>
@@ -46,7 +46,7 @@
       <maven.javadoc.failOnError>false</maven.javadoc.failOnError>
       
<commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-beanutils</commons.scmPubUrl>
       
<commons.scmPubCheckoutDirectory>site-content</commons.scmPubCheckoutDirectory>
-      
<project.build.outputTimestamp>2024-01-01T00:00:00Z</project.build.outputTimestamp>
+      
<project.build.outputTimestamp>2024-12-26T20:01:29Z</project.build.outputTimestamp>
       <japicmp.skip>false</japicmp.skip>
       <!-- Commons Release Plugin -->
       <commons.bc.version>1.9.4</commons.bc.version>
@@ -172,10 +172,12 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-checkstyle-plugin</artifactId>
-                <version>2.6</version>
                 <configuration>
-                    <configLocation>${basedir}/checkstyle.xml</configLocation>
-                    <enableRulesSummary>false</enableRulesSummary>
+                  
<configLocation>${basedir}/src/conf/checkstyle.xml</configLocation>
+                  
<suppressionsLocation>${basedir}/src/conf/checkstyle-suppressions.xml</suppressionsLocation>
+                  <includeTestSourceDirectory>true</includeTestSourceDirectory>
+                  <enableRulesSummary>false</enableRulesSummary>
+                  
<resourceExcludes>NOTICE.txt,LICENSE.txt,**/pom.properties,target/**.properties,</resourceExcludes>
                 </configuration>
             </plugin>
             <plugin>
@@ -184,8 +186,7 @@
                 <configuration>
                     <linksource>true</linksource>
                     <links>
-                        
<link>http://docs.oracle.com/javase/1.5.0/docs/api/</link>
-                        
<link>http://commons.apache.org/collections/api-release/</link>
+                        
<link>https://commons.apache.org/proper/commons-collections/apidocs/</link>
                     </links>
                 </configuration>
             </plugin>
@@ -208,8 +209,6 @@
             </plugin>
         </plugins>
     </reporting>
-
-
     <profiles>
       <profile>
         <id>setup-checkout</id>

Reply via email to