File tree 12 files changed +97
-0
lines changed
git-changelog-maven-plugin-example
src/main/java/se/bjurr/gitchangelog/plugin
12 files changed +97
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Changelog of Git Changelog Maven plugin.
4
4
5
+ ## Unreleased
6
+ ### No issue
7
+
8
+ ** Create FUNDING.yml**
9
+
10
+
11
+ [ 0db3b2367e4adc5] ( https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/0db3b2367e4adc5 ) Tomas Bjerre * 2019-09-28 07:06:15*
12
+
13
+
5
14
## 1.60
6
15
### No issue
7
16
Original file line number Diff line number Diff line change 2
2
3
3
Changelog of Git Changelog Maven plugin.
4
4
5
+ ## Unreleased
6
+ ### No issue
7
+
8
+ ** Create FUNDING.yml**
9
+
10
+
11
+ [ 0db3b2367e4adc5] ( https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/0db3b2367e4adc5 ) Tomas Bjerre * 2019-09-28 07:06:15*
12
+
13
+
5
14
## 1.60
6
15
### No issue
7
16
Original file line number Diff line number Diff line change 2
2
3
3
Changelog of Git Changelog Maven plugin.
4
4
5
+ ## Unreleased
6
+ ### No issue /
7
+ Create FUNDING.yml
8
+
9
+
10
+
5
11
## git-changelog-maven-plugin-1.60
6
12
### No issue /
7
13
Removing dependency on javax.xml
Original file line number Diff line number Diff line change 2
2
3
3
Changelog of Git Changelog Maven plugin.
4
4
5
+ ## Unreleased
6
+ ### No issue
7
+ Create FUNDING.yml * 2019-09-28 07:06:15*
8
+
9
+
10
+
5
11
## git-changelog-maven-plugin-1.60
6
12
### No issue
7
13
Removing dependency on javax.xml * 2019-06-11 17:06:29*
Original file line number Diff line number Diff line change 2
2
3
3
Changelog of Git Changelog Maven plugin.
4
4
5
+ ## Unreleased
6
+ ### No issue
7
+
8
+ [ 0db3b2367e4adc5] ( https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/0db3b2367e4adc5 ) Tomas Bjerre * 2019-09-28 07:06:15*
9
+
10
+ Create FUNDING.yml
11
+
12
+
5
13
## git-changelog-maven-plugin-1.60
6
14
### No issue
7
15
Original file line number Diff line number Diff line change 2
2
3
3
Changelog of Git Changelog Maven plugin.
4
4
5
+ ## Unreleased
6
+ ### No issue
7
+
8
+ ** Create FUNDING.yml**
9
+
10
+
11
+ [ 0db3b2367e4adc5] ( https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/0db3b2367e4adc5 ) Tomas Bjerre * 2019-09-28 07:06:15*
12
+
13
+
5
14
## 1.60
6
15
### No issue
7
16
Original file line number Diff line number Diff line change 2
2
3
3
Changelog of Git Changelog Maven plugin.
4
4
5
+ ## Unreleased
6
+ ### No issue
7
+
8
+ ** Create FUNDING.yml**
9
+
10
+
11
+ [ 0db3b2367e4adc5] ( https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/0db3b2367e4adc5 ) Tomas Bjerre * 2019-09-28 07:06:15*
12
+
13
+
5
14
## git-changelog-maven-plugin-1.60
6
15
### No issue
7
16
Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ Fix fromCommit and fromRef property typo *21:11:26*
60
60
61
61
62
62
### These commits have not issue in their commit comment
63
+ Create FUNDING.yml * 07:06:15*
64
+
63
65
Removing dependency on javax.xml * 17:06:29*
64
66
65
67
OpenJDK 11 compatible * 16:38:05*
Original file line number Diff line number Diff line change 2
2
3
3
Changelog of Git Changelog Maven plugin.
4
4
5
+ ## Next release
6
+ ### Other changes
7
+
8
+ ** Create FUNDING.yml**
9
+
10
+
11
+ [ 0db3b2367e4adc5] ( https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/0db3b2367e4adc5 ) Tomas Bjerre * 2019-09-28 07:06:15*
12
+
13
+
5
14
## 1.60
6
15
### Other changes
7
16
Original file line number Diff line number Diff line change 2
2
3
3
Changelog of Git Changelog Maven plugin.
4
4
5
+ ## Unreleased
6
+ ### No issue
7
+
8
+ ** Create FUNDING.yml**
9
+
10
+
11
+ [ 0db3b2367e4adc5] ( https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/0db3b2367e4adc5 ) Tomas Bjerre * 2019-09-28 07:06:15*
12
+
13
+
5
14
## 1.60
6
15
### No issue
7
16
Original file line number Diff line number Diff line change 32
32
</execution >
33
33
34
34
35
+ <!-- Skipping // -->
36
+ <execution >
37
+ <id >GenerateGitChangelogSkip</id >
38
+ <phase >generate-sources</phase >
39
+ <goals >
40
+ <goal >git-changelog</goal >
41
+ </goals >
42
+ <configuration >
43
+ <file >CHANGELOG_skipped.md</file >
44
+ <skip >true</skip >
45
+ </configuration >
46
+ </execution >
47
+
48
+
35
49
<!-- Settings from file // -->
36
50
<execution >
37
51
<id >GenerateGitChangelogSettings</id >
Original file line number Diff line number Diff line change @@ -119,8 +119,15 @@ public class GitChangelogMojo extends AbstractMojo {
119
119
@ Parameter (property = "customIssues" , required = false )
120
120
private List <CustomIssue > customIssues ;
121
121
122
+ @ Parameter (property = "skip" , required = false )
123
+ private Boolean skip ;
124
+
122
125
@ Override
123
126
public void execute () throws MojoExecutionException {
127
+ if (skip != null && skip == true ) {
128
+ getLog ().info ("Skipping changelog generation" );
129
+ return ;
130
+ }
124
131
try {
125
132
GitChangelogApi builder ;
126
133
builder = gitChangelogApiBuilder ();
You can’t perform that action at this time.
0 commit comments