Skip to content

Commit

Permalink
Merge pull request #7 from dunse/patch-1
Browse files Browse the repository at this point in the history
Fix fromCommit and fromRef property typo
  • Loading branch information
tomasbjerre committed Jan 31, 2017
2 parents cbc5f55 + bd8f639 commit 6464886
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ public class GitChangelogMojo extends AbstractMojo {
@Parameter(property = "toCommit", required = false)
private String toCommit;

@Parameter(property = "toRef", required = false)
@Parameter(property = "fromRef", required = false)
private String fromRef;
@Parameter(property = "toCommit", required = false)
@Parameter(property = "fromCommit", required = false)
private String fromCommit;

@Parameter(property = "settingsFile", required = false)
Expand Down

0 comments on commit 6464886

Please sign in to comment.