Skip to content

Commit f69e5c4

Browse files
committed
2 parents f92a056 + f5930a0 commit f69e5c4

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
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>85</version>
22+
<version>87</version>
2323
</parent>
2424
<modelVersion>4.0.0</modelVersion>
2525
<groupId>commons-cli</groupId>

src/changes/changes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
<!-- FIX -->
2727
<!-- ADD -->
2828
<!-- UPDATE -->
29+
<action type="update" dev="ggregory" due-to="Gary Gregory, Dependabot">Bump org.apache.commons:commons-parent from 85 to 87 #393.</action>
2930
</release>
3031
<release version="1.10.0" date="2025-07-30" description="This is a feature and maintenance release. Java 8 or later is required.">
3132
<!-- FIX -->

src/main/java/org/apache/commons/cli/DeprecatedAttributes.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ public static class Builder implements Supplier<DeprecatedAttributes> {
4444
/**
4545
* Whether this option is subject to removal in a future version.
4646
*
47-
* @see <a href="https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.forRemoval</a>
47+
* @see <a href="https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.forRemoval</a>
4848
*/
4949
private boolean forRemoval;
5050

5151
/**
5252
* The version in which the option became deprecated.
5353
*
54-
* @see <a href="https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.since</a>
54+
* @see <a href="https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.since</a>
5555
*/
5656
private String since;
5757

@@ -86,7 +86,7 @@ public Builder setDescription(final String description) {
8686
*
8787
* @param forRemoval whether this is subject to removal in a future version.
8888
* @return {@code this} instance.
89-
* @see <a href="https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.forRemoval</a>
89+
* @see <a href="https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.forRemoval</a>
9090
*/
9191
public Builder setForRemoval(final boolean forRemoval) {
9292
this.forRemoval = forRemoval;

0 commit comments

Comments
 (0)