├── .github └── workflows │ └── publish-release-on-tag-push.yaml ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── CHANGELOG.md ├── LICENSE ├── README.md ├── git-changelog-maven-plugin-example ├── CHANGELOG.md ├── CHANGELOG_1_1.md ├── CHANGELOG_commits.md ├── CHANGELOG_custom.md ├── CHANGELOG_customHelper.txt ├── CHANGELOG_ignoreCommitsOlderThan.md ├── CHANGELOG_ignoreCommitsWithoutIssue.md ├── CHANGELOG_inline.md ├── CHANGELOG_jira.md ├── CHANGELOG_minimal.md ├── CHANGELOG_mixed.md ├── CHANGELOG_settings.md ├── CHANGELOG_simplePlainText.txt ├── CHANGELOG_templatefile.md ├── RELEASENOTES_1_0_1_1.md ├── changelog.json └── pom.xml ├── mvnw ├── mvnw.cmd ├── pom.xml ├── release.sh └── src └── main └── java └── se └── bjurr └── gitchangelog └── plugin ├── CustomIssue.java ├── GitChangelogMojo.java ├── SemanticVersionMojo.java └── XmlModifier.java /.github/workflows/publish-release-on-tag-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/.github/workflows/publish-release-on-tag-push.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/README.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG_1_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG_1_1.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG_commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG_commits.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG_custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG_custom.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG_customHelper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG_customHelper.txt -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG_ignoreCommitsOlderThan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG_ignoreCommitsOlderThan.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG_ignoreCommitsWithoutIssue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG_ignoreCommitsWithoutIssue.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG_inline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG_inline.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG_jira.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG_jira.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG_minimal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG_minimal.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG_mixed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG_mixed.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG_settings.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG_simplePlainText.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG_simplePlainText.txt -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/CHANGELOG_templatefile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/CHANGELOG_templatefile.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/RELEASENOTES_1_0_1_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/RELEASENOTES_1_0_1_1.md -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/changelog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/changelog.json -------------------------------------------------------------------------------- /git-changelog-maven-plugin-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/git-changelog-maven-plugin-example/pom.xml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/release.sh -------------------------------------------------------------------------------- /src/main/java/se/bjurr/gitchangelog/plugin/CustomIssue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/src/main/java/se/bjurr/gitchangelog/plugin/CustomIssue.java -------------------------------------------------------------------------------- /src/main/java/se/bjurr/gitchangelog/plugin/GitChangelogMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/src/main/java/se/bjurr/gitchangelog/plugin/GitChangelogMojo.java -------------------------------------------------------------------------------- /src/main/java/se/bjurr/gitchangelog/plugin/SemanticVersionMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/src/main/java/se/bjurr/gitchangelog/plugin/SemanticVersionMojo.java -------------------------------------------------------------------------------- /src/main/java/se/bjurr/gitchangelog/plugin/XmlModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasbjerre/git-changelog-maven-plugin/HEAD/src/main/java/se/bjurr/gitchangelog/plugin/XmlModifier.java --------------------------------------------------------------------------------