Skip to content

Commit

Permalink
Bump org.apache.commons:commons-parent from 78 to 79
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 10, 2025
1 parent 5cdaddf commit 83da234
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 27 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>78</version>
<version>79</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>commons-beanutils</groupId>
Expand Down
4 changes: 2 additions & 2 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
for tickets closed since the previous release. 3. Use the report generated by the maven-changelog-plugin to see all SVN commits.
Set the project.properties' maven.changelog.range property to the number of days since the last release. The <action> type
attribute can be add,update,fix,remove. -->
<document xmlns="http://maven.apache.org/changes/1.0.0"
<document xmlns="http://maven.apache.org/changes/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/xsd/changes-1.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/changes/2.0.0 https://maven.apache.org/xsd/changes-2.0.0.xsd">
<properties>
<title>Release Notes</title>
</properties>
Expand Down
38 changes: 19 additions & 19 deletions src/conf/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ limitations under the License.
"https://checkstyle.org/dtds/configuration_1_3.dtd">
<!-- commons lang customization of default Checkstyle behavior -->
<module name="Checker">
<module name="FileTabCharacter"/>
<module name="FileTabCharacter" />
<module name="SuppressionFilter">
<!-- Default property set by maven-checkstyle-plugin -->
<property name="file" value="${checkstyle.suppressions.file}"/>
<property name="optional" value="false"/>
<property name="file" value="${checkstyle.suppressions.file}" />
<property name="optional" value="false" />
</module>
<module name="JavadocPackage" />
<module name="LineLength">
<property name="max" value="160"/>
<property name="max" value="160" />
</module>
<module name="NewlineAtEndOfFile" />
<!-- Line with trailing spaces -->
<module name="RegexpSingleline">
<property name="format" value="\s+$"/>
<property name="message" value="Line has trailing spaces."/>
<property name="format" value="\s+$" />
<property name="message" value="Line has trailing spaces." />
</module>
<!-- @author tags are deprecated -->
<module name="RegexpSingleline">
Expand All @@ -45,23 +45,23 @@ limitations under the License.
<property name="severity" value="warning" />
</module>
<module name="TreeWalker">
<module name="AvoidStarImport"/>
<module name="AvoidStarImport" />
<module name="ExplicitInitializationCheck" />
<module name="ImportOrder">
<property name="option" value="top"/>
<property name="groups" value="java,javax,org"/>
<property name="ordered" value="true"/>
<property name="separated" value="true"/>
<property name="option" value="top" />
<property name="groups" value="java,javax,org" />
<property name="ordered" value="true" />
<property name="separated" value="true" />
</module>
<module name="JavadocType">
<module name="JavadocMethod">
<property name="accessModifiers" value="protected"/>
<property name="accessModifiers" value="public, protected" />
</module>
<module name="NeedBraces"/>
<module name="RedundantImport"/>
<module name="UnusedImports"/>
<property name="scope" value="protected"/>
<module name="JavadocType">
<property name="scope" value="protected" />
</module>
<module name="NeedBraces" />
<module name="RedundantImport" />
<module name="UnusedImports" />
</module>
<property name="localeLanguage" value="en"/>
</module>
<property name="localeLanguage" value="en" />
</module>
6 changes: 1 addition & 5 deletions src/site/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
<src>/images/logo.png</src>
<href>/index.html</href>
</bannerRight>

<body>
<menu name="BeanUtils">
<item name="Overview" href="/index.html"/>
Expand All @@ -32,10 +31,9 @@
<item name="Source Repository" href="/scm.html"/>
<item name="License" href="http://www.apache.org/licenses/LICENSE-2.0.txt"/>
</menu>

<menu name="Documentation">
<item name="Building" href="/building.html"/>
<item name="History" href="/changes-report.html"/>
<item name="History" href="/changes.html"/>
<item name="1.9.4" collapse="true" href="/index.html">
<item name="Release Notes" href="http://commons.apache.org/beanutils/javadocs/v1.9.4/RELEASE-NOTES.txt"/>
<item name="User Guide" href="http://commons.apache.org/beanutils/javadocs/v1.9.4/apidocs/org/apache/commons/beanutils/package-summary.html#package_description"/>
Expand All @@ -57,7 +55,5 @@
<item name="API" href="http://commons.apache.org/beanutils/javadocs/v1.8.3/apidocs/index.html"/>
</item>
</menu>

</body>

</project>

0 comments on commit 83da234

Please sign in to comment.