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

Fix javadoc errors and warning #98

Merged
merged 2 commits into from Jul 14, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -118,28 +118,28 @@ public class ParseVersionMojo
* This can be used to make a particular format of the major number possible like padding it with zeros etc.
*
* @since 3.0.0
* @see https://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html#syntax
* @see <a href="https://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html#syntax">Formatter syntax</a>
*/
@Parameter( defaultValue = "%02d" )
private String formatMajor;

/**
* @since 3.0.0
* @see https://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html#syntax
* @see <a href="https://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html#syntax">Formatter syntax</a>
*/
@Parameter( defaultValue = "%02d" )
private String formatMinor;

/**
* @since 3.0.0
* @see https://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html#syntax
* @see <a href="https://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html#syntax">Formatter syntax</a>
*/
@Parameter( defaultValue = "%02d" )
private String formatIncremental;

/**
* @since 3.0.0
* @see https://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html#syntax
* @see <a href="https://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html#syntax">Formatter syntax</a>
*/
@Parameter( defaultValue = "%02d" )
private String formatBuildNumber;
Expand Down
Expand Up @@ -115,8 +115,6 @@ public class ReserveListenerPortMojo

/**
* Specify true or false if you want the port selection randomized.
* <p>
* </p>
*
* @since 1.10
*/
Expand Down