-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
828200d
commit ad7cb42
Showing
9 changed files
with
75 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,20 @@ | ||
apply plugin: 'java-library' | ||
|
||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
mavenLocal() | ||
} | ||
dependencies { | ||
classpath 'se.bjurr.gradle:gradle-scripts:2.+' | ||
} | ||
plugins { | ||
id "se.bjurr.gradle.conventional-release" version "0.+" | ||
id "se.bjurr.gradle.update-versions" version "0.+" | ||
id "se.bjurr.gradle.java-convention" version "0.+" | ||
} | ||
project.ext.buildConfig = [ | ||
repoType: "COMMAND", | ||
publishing: [ | ||
relocate: [ | ||
"org:org", | ||
"com:com" | ||
] | ||
], | ||
manifest: [ | ||
mainClass: 'se.bjurr.gitchangelog.main.Main' | ||
] | ||
] | ||
apply from: project.buildscript.classLoader.getResource('main.gradle').toURI() | ||
|
||
shadowJar { | ||
exclude 'META-INF/versions/21/**' | ||
exclude 'META-INF/versions/21/**' | ||
} | ||
|
||
dependencies { | ||
implementation 'se.bjurr.gitchangelog:git-changelog-lib:2.1.3' | ||
implementation 'se.softhouse:jargo:0.4.14' | ||
implementation 'org.slf4j:slf4j-simple:2.0.6' | ||
implementation 'com.google.code.gson:gson:2.10.1' | ||
implementation 'org.openjdk.nashorn:nashorn-core:15.4' | ||
implementation 'se.bjurr.gitchangelog:git-changelog-lib:2.1.3' | ||
implementation 'se.softhouse:jargo:0.4.14' | ||
implementation 'org.slf4j:slf4j-simple:2.0.6' | ||
implementation 'com.google.code.gson:gson:2.10.1' | ||
implementation 'org.openjdk.nashorn:nashorn-core:15.4' | ||
|
||
testImplementation 'junit:junit:4.13.2' | ||
testImplementation 'junit:junit:4.13.2' | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,33 @@ | ||
{ | ||
"templatePath": "changelog.json", | ||
|
||
"fromRepo": ".", | ||
"fromCommit": "0000000000000000000000000000000000000000", | ||
"toRef": "refs/heads/master", | ||
|
||
"ignoreCommitsIfMessageMatches": "^\\[maven-release-plugin\\].*|^\\[Gradle Release Plugin\\].*|^Merge.*", | ||
"readableTagName": "/([^/]+?)$", | ||
"dateFormat": "YYYY-MM-dd HH:mm:ss", | ||
"untaggedName": "Next release", | ||
"noIssueName": "Other changes", | ||
"timeZone": "UTC", | ||
"removeIssueFromMessage": "true", | ||
|
||
"jiraServer": "https://jiraserver/jira", | ||
"jiraIssuePattern": "\\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\\b", | ||
|
||
"gitHubApi": "https://api.github.com/repos/tomasbjerre/git-changelog-command-line", | ||
"gitHubIssuePattern": "#([0-9]+)", | ||
|
||
"customIssues": [ | ||
{ "name": "Incident", "pattern": "INC[0-9]*", "link": "http://inc/${PATTERN_GROUP}" }, | ||
{ "name": "CQ", "pattern": "CQ([0-9]+)", "link": "http://cq/${PATTERN_GROUP_1}" }, | ||
{ "name": "Bugs", "pattern": "#bug" } | ||
] | ||
"templatePath": "changelog.json", | ||
"fromRepo": ".", | ||
"fromCommit": "0000000000000000000000000000000000000000", | ||
"toRef": "refs/heads/master", | ||
"ignoreCommitsIfMessageMatches": "^\\[maven-release-plugin\\].*|^\\[Gradle Release Plugin\\].*|^Merge.*", | ||
"readableTagName": "/([^/]+?)$", | ||
"dateFormat": "YYYY-MM-dd HH:mm:ss", | ||
"untaggedName": "Next release", | ||
"noIssueName": "Other changes", | ||
"timeZone": "UTC", | ||
"removeIssueFromMessage": "true", | ||
"jiraServer": "https://jiraserver/jira", | ||
"jiraIssuePattern": "\\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\\b", | ||
"gitHubApi": "https://api.github.com/repos/tomasbjerre/git-changelog-command-line", | ||
"gitHubIssuePattern": "#([0-9]+)", | ||
"customIssues": [ | ||
{ | ||
"name": "Incident", | ||
"pattern": "INC[0-9]*", | ||
"link": "http://inc/${PATTERN_GROUP}" | ||
}, | ||
{ | ||
"name": "CQ", | ||
"pattern": "CQ([0-9]+)", | ||
"link": "http://cq/${PATTERN_GROUP_1}" | ||
}, | ||
{ | ||
"name": "Bugs", | ||
"pattern": "#bug" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
#Sun Jul 07 08:01:20 CEST 2024 | ||
# | ||
#Thu Oct 03 19:53:35 CEST 2024 | ||
description="Command line tool that generates changelog from a GIT repository." | ||
version=2.3.0 | ||
group=se.bjurr.gitchangelog | ||
mainClass=se.bjurr.gitchangelog.main.Main | ||
relocate=org\:org,com\:com | ||
repoType=COMMAND | ||
version=2.3.0 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
pluginManagement { | ||
repositories { | ||
gradlePluginPortal() | ||
mavenCentral() | ||
mavenLocal() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters