File tree 1 file changed +3
-3
lines changed
src/main/java/se/bjurr/gitchangelog/plugin
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ public class GitChangelogMojo extends AbstractMojo {
37
37
@ Parameter (property = "toRevisionStrategy" , required = false , defaultValue = "DEFAULT" )
38
38
public InclusivenessStrategy toRevisionStrategy ;
39
39
40
- /** {@link Deprecated} use toRevision */
40
+ /** {@link Deprecated} use fromRevision */
41
41
@ Deprecated
42
42
@ Parameter (property = "fromRef" , required = false )
43
43
private String fromRef ;
44
44
45
- /** {@link Deprecated} use toRevision */
45
+ /** {@link Deprecated} use fromRevision */
46
46
@ Deprecated
47
47
@ Parameter (property = "fromCommit" , required = false )
48
48
private String fromCommit ;
@@ -267,7 +267,7 @@ public void execute() throws MojoExecutionException {
267
267
builder .withToRef (this .toRef );
268
268
}
269
269
if (this .isSupplied (this .toRevision )) {
270
- builder .withFromRevision (this .toRevision , this .toRevisionStrategy );
270
+ builder .withToRevision (this .toRevision , this .toRevisionStrategy );
271
271
}
272
272
273
273
if (this .isSupplied (this .ignoreTagsIfNameMatches )) {
You can’t perform that action at this time.
0 commit comments