Skip to content

Commit 83da234

Browse files
committed
Bump org.apache.commons:commons-parent from 78 to 79
1 parent 5cdaddf commit 83da234

File tree

4 files changed

+23
-27
lines changed

4 files changed

+23
-27
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.apache.commons</groupId>
2121
<artifactId>commons-parent</artifactId>
22-
<version>78</version>
22+
<version>79</version>
2323
</parent>
2424
<modelVersion>4.0.0</modelVersion>
2525
<groupId>commons-beanutils</groupId>

src/changes/changes.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
for tickets closed since the previous release. 3. Use the report generated by the maven-changelog-plugin to see all SVN commits.
2222
Set the project.properties' maven.changelog.range property to the number of days since the last release. The <action> type
2323
attribute can be add,update,fix,remove. -->
24-
<document xmlns="http://maven.apache.org/changes/1.0.0"
24+
<document xmlns="http://maven.apache.org/changes/2.0.0"
2525
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26-
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/xsd/changes-1.0.0.xsd">
26+
xsi:schemaLocation="http://maven.apache.org/changes/2.0.0 https://maven.apache.org/xsd/changes-2.0.0.xsd">
2727
<properties>
2828
<title>Release Notes</title>
2929
</properties>

src/conf/checkstyle.xml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ limitations under the License.
2121
"https://checkstyle.org/dtds/configuration_1_3.dtd">
2222
<!-- commons lang customization of default Checkstyle behavior -->
2323
<module name="Checker">
24-
<module name="FileTabCharacter"/>
24+
<module name="FileTabCharacter" />
2525
<module name="SuppressionFilter">
2626
<!-- Default property set by maven-checkstyle-plugin -->
27-
<property name="file" value="${checkstyle.suppressions.file}"/>
28-
<property name="optional" value="false"/>
27+
<property name="file" value="${checkstyle.suppressions.file}" />
28+
<property name="optional" value="false" />
2929
</module>
3030
<module name="JavadocPackage" />
3131
<module name="LineLength">
32-
<property name="max" value="160"/>
32+
<property name="max" value="160" />
3333
</module>
3434
<module name="NewlineAtEndOfFile" />
3535
<!-- Line with trailing spaces -->
3636
<module name="RegexpSingleline">
37-
<property name="format" value="\s+$"/>
38-
<property name="message" value="Line has trailing spaces."/>
37+
<property name="format" value="\s+$" />
38+
<property name="message" value="Line has trailing spaces." />
3939
</module>
4040
<!-- @author tags are deprecated -->
4141
<module name="RegexpSingleline">
@@ -45,23 +45,23 @@ limitations under the License.
4545
<property name="severity" value="warning" />
4646
</module>
4747
<module name="TreeWalker">
48-
<module name="AvoidStarImport"/>
48+
<module name="AvoidStarImport" />
4949
<module name="ExplicitInitializationCheck" />
5050
<module name="ImportOrder">
51-
<property name="option" value="top"/>
52-
<property name="groups" value="java,javax,org"/>
53-
<property name="ordered" value="true"/>
54-
<property name="separated" value="true"/>
51+
<property name="option" value="top" />
52+
<property name="groups" value="java,javax,org" />
53+
<property name="ordered" value="true" />
54+
<property name="separated" value="true" />
5555
</module>
56-
<module name="JavadocType">
5756
<module name="JavadocMethod">
58-
<property name="accessModifiers" value="protected"/>
57+
<property name="accessModifiers" value="public, protected" />
5958
</module>
60-
<module name="NeedBraces"/>
61-
<module name="RedundantImport"/>
62-
<module name="UnusedImports"/>
63-
<property name="scope" value="protected"/>
59+
<module name="JavadocType">
60+
<property name="scope" value="protected" />
6461
</module>
62+
<module name="NeedBraces" />
63+
<module name="RedundantImport" />
64+
<module name="UnusedImports" />
6565
</module>
66-
<property name="localeLanguage" value="en"/>
67-
</module>
66+
<property name="localeLanguage" value="en" />
67+
</module>

src/site/site.xml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
<src>/images/logo.png</src>
2222
<href>/index.html</href>
2323
</bannerRight>
24-
2524
<body>
2625
<menu name="BeanUtils">
2726
<item name="Overview" href="/index.html"/>
@@ -32,10 +31,9 @@
3231
<item name="Source Repository" href="/scm.html"/>
3332
<item name="License" href="http://www.apache.org/licenses/LICENSE-2.0.txt"/>
3433
</menu>
35-
3634
<menu name="Documentation">
3735
<item name="Building" href="/building.html"/>
38-
<item name="History" href="/changes-report.html"/>
36+
<item name="History" href="/changes.html"/>
3937
<item name="1.9.4" collapse="true" href="/index.html">
4038
<item name="Release Notes" href="http://commons.apache.org/beanutils/javadocs/v1.9.4/RELEASE-NOTES.txt"/>
4139
<item name="User Guide" href="http://commons.apache.org/beanutils/javadocs/v1.9.4/apidocs/org/apache/commons/beanutils/package-summary.html#package_description"/>
@@ -57,7 +55,5 @@
5755
<item name="API" href="http://commons.apache.org/beanutils/javadocs/v1.8.3/apidocs/index.html"/>
5856
</item>
5957
</menu>
60-
6158
</body>
62-
6359
</project>

0 commit comments

Comments
 (0)