Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
57f29725
Commit
57f29725
authored
Feb 13, 2019
by
Tomas Bjerre
Committed by
Greg Messner
Feb 13, 2019
Browse files
Adding Git Changelog Maven Plugin (#301)
parent
00496bf6
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
57f29725
...
...
@@ -44,3 +44,5 @@ target/
# Test properties file for gitlab4j
test-gitlab4j.properties
.okhttpcache
CHANGELOG.md
0 → 100644
View file @
57f29725
This diff is collapsed.
Click to expand it.
CHANGELOG.mustache
0 → 100644
View file @
57f29725
# Changelog
Changelog of GitLab4J API.
{{#
tags
}}
##
{{
name
}}
{{#
issues
}}
{{#
hasIssue
}}
{{#
hasLink
}}
###
{{
name
}}
[
{{
issue
}}
](
{{
link
}}
)
{{
title
}}
{{#
hasIssueType
}}
*
{{
issueType
}}
*
{{/
hasIssueType
}}
{{#
hasLabels
}}
{{#
labels
}}
*
{{
.
}}
*
{{/
labels
}}
{{/
hasLabels
}}
{{/
hasLink
}}
{{^
hasLink
}}
###
{{
name
}}
{{
issue
}}
{{
title
}}
{{#
hasIssueType
}}
*
{{
issueType
}}
*
{{/
hasIssueType
}}
{{#
hasLabels
}}
{{#
labels
}}
*
{{
.
}}
*
{{/
labels
}}
{{/
hasLabels
}}
{{/
hasLink
}}
{{/
hasIssue
}}
{{^
hasIssue
}}
###
{{
name
}}
{{/
hasIssue
}}
{{#
commits
}}
**
{{{
messageTitle
}}}
**
{{#
messageBodyItems
}}
*
{{
.
}}
{{/
messageBodyItems
}}
[
{{
hash
}}
](https://github.com/
{{
ownerName
}}
/
{{
repoName
}}
/commit/
{{
hash
}}
)
{{
authorName
}}
*
{{
commitTime
}}
*
{{/
commits
}}
{{/
issues
}}
{{/
tags
}}
pom.xml
View file @
57f29725
...
...
@@ -50,6 +50,7 @@
<systemRules.version>
1.18.0
</systemRules.version>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<changelog-lib.version>
1.59
</changelog-lib.version>
</properties>
<scm>
...
...
@@ -195,6 +196,25 @@
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>
se.bjurr.gitchangelog
</groupId>
<artifactId>
git-changelog-maven-plugin
</artifactId>
<version>
${changelog-lib.version}
</version>
<executions>
<execution>
<id>
GenerateGitChangelog
</id>
<phase>
generate-sources
</phase>
<goals>
<goal>
git-changelog
</goal>
</goals>
<configuration>
<readableTagName>
gitlab4j-api-(.*)
</readableTagName>
<templateFile>
CHANGELOG.mustache
</templateFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment