File tree 2 files changed +13
-1
lines changed
src/main/java/se/bjurr/gitchangelog/plugin
2 files changed +13
-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.159 .0</changelog-lib >
46
+ <changelog-lib >1.160 .0</changelog-lib >
47
47
</properties >
48
48
49
49
<dependencies >
Original file line number Diff line number Diff line change @@ -49,6 +49,12 @@ public class GitChangelogMojo extends AbstractMojo {
49
49
@ Parameter (property = "templateContent" , required = false )
50
50
private String templateContent ;
51
51
52
+ @ Parameter (property = "templateBaseDir" , required = false )
53
+ private String templateBaseDir ;
54
+
55
+ @ Parameter (property = "templateSuffix" , required = false )
56
+ private String templateSuffix ;
57
+
52
58
@ Parameter (property = "file" , required = false )
53
59
private File file ;
54
60
@@ -182,6 +188,12 @@ public void execute() throws MojoExecutionException {
182
188
if (this .isSupplied (this .templateContent )) {
183
189
builder .withTemplateContent (this .templateContent );
184
190
}
191
+ if (this .isSupplied (this .templateBaseDir )) {
192
+ builder .withTemplateBaseDir (templateBaseDir );
193
+ }
194
+ if (this .isSupplied (this .templateSuffix )) {
195
+ builder .withTemplateSuffix (templateSuffix );
196
+ }
185
197
if (this .isSupplied (this .fromCommit )) {
186
198
builder .withFromCommit (this .fromCommit );
187
199
}
You can’t perform that action at this time.
0 commit comments