Skip to content

Commit

Permalink
Fixed #380 - Removed deprecated parts
Browse files Browse the repository at this point in the history
  • Loading branch information
khmarbaise committed Dec 27, 2023
1 parent 8558623 commit adb4c52
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 68 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
== Pre-release 0.14.0

:issue-277: https://github.com/khmarbaise/maven-it-extension/issues/277[Fixed #277]
:issue-??: https://github.com/khmarbaise/maven-it-extension/issues/??[Fixed #??]
:issue-379: https://github.com/khmarbaise/maven-it-extension/issues/379[Fixed #379]
:issue-380: https://github.com/khmarbaise/maven-it-extension/issues/380[Fixed #380]
:issue-421: https://github.com/khmarbaise/maven-it-extension/issues/421[Fixed #421]

:release_0_14_0: https://github.com/khmarbaise/maven-it-extension/milestone/14

Expand All @@ -32,7 +34,9 @@

*Breaking Changes*

* {issue-???} - ?
* {issue-380} - Removed deprecated parts
** Removed `@MavenDebug` (related to {issue-379})
** Removed `MavenVersion.UNKNOWN` (related to {issue-421})

*Reporter of this release*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,15 +192,6 @@ public final class MavenCLIOptions {
*/
public static final String ALSO_MAKE = "--also-make";

/**
* {@code --debug}
*
* @apiNote use {@link #VERBOSE} instead.
* @deprecated Will be removed with 0.14.0
*/
@Deprecated
public static final String DEBUG = "--debug";

/**
* {@code -X}
*
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@
*/
@API(status = EXPERIMENTAL, since = "0.1.0")
public enum MavenVersion {
/**
* @deprecated Please use {@link #ANY} instead. Will be removed with Release 0.14.0
*/
@Deprecated
UNKNOWN(of()),
/**
* Represent any Maven version.
*/
Expand Down

0 comments on commit adb4c52

Please sign in to comment.