Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #380 - Removed deprecated parts #443

Merged
merged 1 commit into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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