File tree 2 files changed +7
-1
lines changed
src/main/java/se/bjurr/gitchangelog/plugin
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 43
43
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
44
44
<maven .compiler.target>1.8</maven .compiler.target>
45
45
<maven .compiler.source>1.8</maven .compiler.source>
46
- <changelog-lib >1.160 .0</changelog-lib >
46
+ <changelog-lib >1.162 .0</changelog-lib >
47
47
</properties >
48
48
49
49
<dependencies >
Original file line number Diff line number Diff line change @@ -118,6 +118,9 @@ public class GitChangelogMojo extends AbstractMojo {
118
118
@ Parameter (property = "jiraUsername" , required = false )
119
119
private String jiraUsername ;
120
120
121
+ @ Parameter (property = "jiraBearer" , required = false )
122
+ private String jiraBearer ;
123
+
121
124
@ Parameter (property = "redmineIssuePattern" , required = false )
122
125
private String redmineIssuePattern ;
123
126
@@ -271,6 +274,9 @@ public void execute() throws MojoExecutionException {
271
274
if (this .isSupplied (this .jiraServer )) {
272
275
builder .withJiraServer (this .jiraServer );
273
276
}
277
+ if (this .isSupplied (this .jiraBearer )) {
278
+ builder .withJiraBearer (this .jiraBearer );
279
+ }
274
280
275
281
if (this .isSupplied (this .redmineUsername )) {
276
282
builder .withRedmineUsername (this .redmineUsername );
You can’t perform that action at this time.
0 commit comments