-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
jreleaser.yml
137 lines (130 loc) · 3.71 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
environment:
properties:
nativeImageDir: target/jreleaser/assemble/native-archive/archive
uberJarDir: target
project:
name: ttrpg-convert-cli
description: Utility to convert 5eTools and Pf2eTools JSON data into Markdown
longDescription: |
This utility works with json sources and materials from the 5etools mirror to create
linked and formatted markdown. The resulting markdown will include backgrounds,
classes, deities, feats, items, monsters, races, and spells from a filtered list
of sources (constrained to those you specify == those you own). Books and adventures
can also be explicitly included. Generated content contains Obsidian-specific
formatting for some plugins (admonitions, dice roller, TTRPG Statblocks, etc.),
and is cross-linked and aliased for ease of reference.
links:
homepage: https://github.com/ebullient/ttrpg-convert-cli
documentation: https://github.com/ebullient/ttrpg-convert-cli#readme
license: https://github.com/ebullient/ttrpg-convert-cli/LICENSE
authors:
- "ebullient (Erin Schnabel)"
license: Apache-2.0
inceptionYear: 2022
stereotype: CLI
java:
groupId: dev.ebullient
version: 21
multiProject: false
tags:
- "quarkus"
- "cli"
- "5e-tools"
- "pf2e-tools"
- "ttrpg"
- "java"
- "obsidian-md"
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:
- "ttrpg-convert{.exe,}"
output: "bin"
checksum:
individual: true
distributions:
uber-jar:
type: SINGLE_JAR
artifacts:
- path: '{{uberJarDir}}/{{projectName}}-{{projectVersion}}-runner.jar'
native-archive:
type: NATIVE_IMAGE
executable:
name: ttrpg-convert
windowsExtension: exe
artifacts:
- path: '{{nativeImageDir}}/{{projectName}}-{{projectVersion}}-linux-x86_64.zip'
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
brew:
active: ALWAYS
continueOnError: true
formulaName: 'ttrpg-convert-cli'
multiPlatform: true
skipTemplates:
- README.md.tpl
repository:
commitMessage: '🔖 {{tagName}} {{projectName}}'
release:
github:
changelog:
formatted: ALWAYS
format: "- {{commitShortHash}} {{commitTitle}}"
content: |
# Summary of changes
{{changelogChanges}}
{{changelogContributors}}
labelers:
- label: "infra"
title: "regex:(🔧|👷)"
- label: "deps"
title: "Bump "
- label: "generated"
title: "🤖 "
- label: "release"
title: "🔖 "
excludeLabels:
- "infra"
- "deps"
- "generated"
- "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}}"