This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
jreleaser.yml
119 lines (112 loc) · 2.94 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
environment:
properties:
nativeImageDir: target/jreleaser/assemble/native-archive/archive
uberJarDir: target
project:
name: pockets-cli
description: RPG inventory management
longDescription: |
What have you got in your pockets? This is a command line application
written with Java using Quarkus, Picocli, and JPA. It uses a file-based
h2 datastore to track the contents of your "pockets".
links:
homepage: https://github.com/ebullient/pockets-cli
documentation: https://github.com/ebullient/pockets-cli#readme
license: https://github.com/ebullient/pockets-cli/LICENSE
authors:
- "ebullient (Erin Schnabel)"
license: Apache-2.0
inceptionYear: 2022
stereotype: CLI
java:
groupId: dev.ebullient
version: 11
multiProject: false
tags:
- "quarkus"
- "cli"
- "5e-tools"
- "java"
- "inventory"
assemble:
# Archives for native images
archive:
native-archive:
active: ALWAYS
exported: false
attachPlatform: true
archiveName: "{{projectName}}-{{projectVersion}}"
formats:
- ZIP
- TGZ
fileSets:
- input: "."
includes:
- "LICENSE"
- "README.md"
- input: "target/"
includes:
- "pockets{.exe,}"
output: "bin"
checksum:
individual: true
distributions:
uber-jar:
type: SINGLE_JAR
artifacts:
- path: '{{uberJarDir}}/{{projectName}}-{{projectVersion}}-runner.jar'
native-archive:
type: NATIVE_IMAGE
artifacts:
- path: '{{nativeImageDir}}/{{projectName}}-{{projectVersion}}-linux-x86_64.tgz'
platform: linux-x86_64
- path: '{{nativeImageDir}}/{{projectName}}-{{projectVersion}}-windows-x86_64.zip'
platform: windows-x86_64
- path: '{{nativeImageDir}}/{{projectName}}-{{projectVersion}}-osx-x86_64.zip'
platform: osx-x86_64
- path: '{{nativeImageDir}}/{{projectName}}-{{projectVersion}}-osx-aarch_64.zip'
platform: osx-aarch_64
release:
github:
changelog:
formatted: ALWAYS
format: "- {{commitShortHash}} {{commitTitle}}"
content: |
# Summary of changes
{{changelogChanges}}
{{changelogContributors}}
labelers:
- label: "infra"
title: "regex:(🔧|👷)"
- label: "deps"
title: "Bump "
- label: "merge"
title: "Merge "
- label: "release"
title: "🔖 "
excludeLabels:
- "infra"
- "deps"
- "merge"
- "release"
hide:
contributors:
- "ebullient"
- "Erin Schnabel"
- github-actions
- GitHub
- "[bot]"
checksums: true
discussionCategoryName: Announcements
issues:
enabled: false
milestone:
close: false
overwrite: false
update:
enabled: true
sections:
- ASSETS
skipTag: true
sign: false
tagName: "{{projectVersion}}"