Last active
January 30, 2026 17:15
-
-
Save sttamper/0bd186b222258d2c93fb5ef3b80ac919 to your computer and use it in GitHub Desktop.
A ready for production jreleaser configuration
This file contains hidden or 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
| jreleaser { | |
| project { | |
| name = 'zco-tournament-api' | |
| authors = ['Captain Mcwiise'] | |
| license = 'Apache-2.0' | |
| versionPattern = 'SEMVER' | |
| inceptionYear = '2025' | |
| } | |
| release { | |
| github { | |
| enabled = true | |
| repoOwner = 'username_or_organizationName' | |
| update { | |
| enabled = true | |
| } | |
| changelog { | |
| enabled = true | |
| formatted = 'ALWAYS' | |
| preset = 'conventional-commits' | |
| format = '- {{commitShortHash}} {{commitTitle}}' | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment