Skip to content

Commit

Permalink
refactor: Update descriptions for new auto-config properties. Resolve…
Browse files Browse the repository at this point in the history
…s to #937
  • Loading branch information
aalmiray committed Oct 27, 2022
1 parent cf15d4d commit fa761c3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Expand Up @@ -209,12 +209,12 @@ abstract class JReleaseAutoConfigReleaseTask extends DefaultTask {
this.projectStereotype.set(projectStereotype)
}

@Option(option = 'author', description = 'Project author(s) (OPTIONAL).')
@Option(option = 'author', description = 'The project authors (OPTIONAL).')
void setAuthor(List<String> authors) {
this.authors.addAll(authors)
}

@Option(option = 'tag-name', description = 'The release tga (OPTIONAL).')
@Option(option = 'tag-name', description = 'The release tag (OPTIONAL).')
void setTagName(String tagName) {
this.tagName.set(tagName)
}
Expand Down
Expand Up @@ -105,7 +105,7 @@ public class JReleaserAutoConfigReleaseMojo extends AbstractMojo {
@Parameter(property = "jreleaser.project.snapshot.full.changelog")
boolean projectSnapshotFullChangelog;
/**
* The project copyright information.
* The project copyright.
*/
@Parameter(property = "jreleaser.project.copyright")
private String projectCopyright;
Expand All @@ -115,12 +115,12 @@ public class JReleaserAutoConfigReleaseMojo extends AbstractMojo {
@Parameter(property = "jreleaser.project.description")
private String projectDescription;
/**
* The year of project inception.
* The project inception year.
*/
@Parameter(property = "jreleaser.project.inceptionYear")
@Parameter(property = "jreleaser.project.inception.year")
private String projectInceptionYear;
/**
* The stereotype of the project.
* The project stereotype.
*/
@Parameter(property = "jreleaser.project.stereotype")
private String projectStereotype;
Expand Down Expand Up @@ -225,7 +225,7 @@ public class JReleaserAutoConfigReleaseMojo extends AbstractMojo {
@Parameter(property = "jreleaser.armored")
private boolean armored;
/**
* The authors.
* The project authors.
*/
@Parameter(property = "jreleaser.authors")
private String[] authors;
Expand Down

0 comments on commit fa761c3

Please sign in to comment.