Skip to content

Commit

Permalink
refactor(cli): Author property should be singular. Relates to #937
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Oct 27, 2022
1 parent 787eecb commit 0c7dc8f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/jreleaser/src/main/java/org/jreleaser/cli/Release.java
Expand Up @@ -144,8 +144,8 @@ static class AutoConfigGroup {
@CommandLine.Option(names = {"--project-stereotype"})
String projectStereotype;

@CommandLine.Option(names = {"--authors"},
paramLabel = "<authors>")
@CommandLine.Option(names = {"--author"},
paramLabel = "<author>")
String[] authors;

@CommandLine.Option(names = {"--tag-name"})
Expand Down
Expand Up @@ -186,7 +186,7 @@ jreleaser.release.project-version-pattern = The project version pattern.
jreleaser.release.project-snapshot-pattern = The project snapshot pattern.
jreleaser.release.project-snapshot-label = The project snapshot label.
jreleaser.release.project-snapshot-full-changelog = Calculate full changelog since last non-snapshot release.
jreleaser.release.authors = The project authors.
jreleaser.release.author = The project authors. Repeatable.
jreleaser.release.project-copyright = The project copyright.
jreleaser.release.project-description = The project description.
jreleaser.release.project-inception-year = The project inception year.
Expand Down
Expand Up @@ -184,7 +184,7 @@ jreleaser.release.project-version-pattern = Das Muster einer Version.
jreleaser.release.project-snapshot-pattern = Das Muster einer Vorabversion.
jreleaser.release.project-snapshot-label = Die Kennung einer Vorabversion.
jreleaser.release.project-snapshot-full-changelog = Erstellt eine vollständige Änderungsliste gegenüber der letzten Projektversion.
jreleaser.release.authors = Die Authoren des Projekts.
jreleaser.release.author = Die Authoren des Projekts. Wiederholbar.
jreleaser.release.project-copyright = Das Copyright des Projekts.
jreleaser.release.project-description = Die Beschreibung des Projekts.
jreleaser.release.project-inception-year = Das Entstehungsjahr des Projekts.
Expand Down

0 comments on commit 0c7dc8f

Please sign in to comment.