-
Notifications
You must be signed in to change notification settings - Fork 0
/
jreleaser.yml
61 lines (56 loc) · 1.54 KB
/
jreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# {{jreleaserCreationStamp}}
project:
name: kt-cli-app
# version: defined in variable JRELEASER_PROJECT_VERSION
description: Kotlin CLI app
longDescription: A sample application written in Kotlin
authors:
- Namuan
license: MIT
links:
homepage: https://github.com/namuan/kt-cli-app
inceptionYear: 2022
release:
github:
overwrite: false
sign: false
changelog:
formatted: 'ALWAYS'
format: '- {{commitShortHash}} {{commitTitle}}'
preset: 'conventional-commits'
contributors:
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
packagers:
brew:
formulaName: kt_cli_app
active: always
multiPlatform: true
tap:
owner: namuan
name: homebrew-tap
assemble:
archive:
kt-cli-app:
active: ALWAYS
formats: [ ZIP ]
attachPlatform: true
fileSets:
- input: 'target'
output: 'bin'
includes: [ 'kt-cli-app{.exe,}' ]
- input: '.'
includes: [ 'LICENSE' ]
environment:
properties:
artifactsDir: out/jreleaser/assemble/kt-cli-app/archive
distributions:
kt-cli-app:
executable:
windowsExtension: exe
artifacts:
- path: "{{artifactsDir}}/kt-cli-app-{{projectVersion}}-osx-x86_64.zip"
platform: "osx-x86_64"
- path: "{{artifactsDir}}/kt-cli-app-{{projectVersion}}-linux-x86_64.zip"
platform: "linux-x86_64"
- path: "{{artifactsDir}}/kt-cli-app-{{projectVersion}}-windows-x86_64.zip"
platform: "windows-x86_64"