-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathjreleaser.yml
74 lines (65 loc) · 1.87 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
62
63
64
65
66
67
68
69
70
71
72
73
74
project:
name: mjprof
description: mjprof is a command line monadic java profiler
longDescription: mjprof is a monadic thread dump analysis tool set. It is a fancy way to say it analyzes jstack output using a series of simple composable building blocks (monads).
links:
homepage: https://github.com/AdoptOpenJDK/mjprof
authors:
- Haim Yadid
license: Apache-2.0
java:
groupId: com.performizeit
version: 8
inceptionYear: 2014
stereotype: cli
release:
github:
branch: master
overwrite: true
sign: false
changelog:
formatted: 'ALWAYS'
format: '- {{commitShortHash}} {{commitTitle}}'
preset: 'conventional-commits'
contributors:
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
signing:
active: never
armored: true
packagers:
brew:
active: always
multiPlatform: true
tap:
owner: lifey
# export JRELEASER_PROJECT_VERSION=1.1.0
# jreleaser assemble
# jreleaser full-release -scp
assemble:
archive:
mjprof:
active: ALWAYS
formats: [ ZIP ]
attachPlatform: true
fileSets:
- input: 'target'
output: 'bin'
includes: [ 'mjprof{.exe,}' ]
- input: '.'
includes: [ 'LICENSE' ]
environment:
properties:
artifactsDir: out/jreleaser/assemble/mjprof/archive
distributions:
mjprof:
executable:
windowsExtension: exe
artifacts:
- path: "{{artifactsDir}}/mjprof-{{projectVersion}}-osx-x86_64.zip"
platform: "osx-x86_64"
# - path: "{{artifactsDir}}/mjprof-{{projectVersion}}-osx-aarch_64.zip"
# platform: "osx-aarch_64"
- path: "{{artifactsDir}}/mjprof-{{projectVersion}}-linux-x86_64.zip"
platform: "linux-x86_64"
- path: "{{artifactsDir}}/mjprof-{{projectVersion}}-windows-x86_64.zip"
platform: "windows-x86_64"