forked from redis/riot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jreleaser.yml
231 lines (220 loc) · 6.74 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
environment:
properties:
jdkPathPrefix: 'plugins/riot/build/jdks'
jdkFilePrefix: 'zulu17.50.19-ca-jdk17.0.11'
project:
name: riot
description: Get data in and out of Redis with RIOT
longDescription: |
RIOT is a series of command-line utilities designed to help you get data in and out of Redis.
It supports many different sources and targets:
- Relational databases
- Files (CSV, JSON, XML)
- Data generators (Redis data structures, Faker)
- and Redis itself with live and/or snapshot replication.
links:
homepage: https://github.com/redis/riot
documentation: https://redis.github.io/riot
authors:
- Julien Ruaux
license: Apache-2.0
inceptionYear: '2020'
stereotype: CLI
vendor: Redis
icons:
- url: https://raw.githubusercontent.com/redis/riot/main/src/media/icon_256x256.png
width: 256
height: 256
java:
groupId: com.redis
version: '21'
multiProject: true
mainClass: com.redis.riot.Riot
tags: ['riot', 'redis', 'input', 'output', 'tool', 'data', 'import', 'export']
platform:
replacements:
aarch_64: aarch64
release:
github:
overwrite: true
sign: true
issues:
enabled: true
changelog:
formatted: ALWAYS
preset: conventional-commits
contributors:
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
enabled: false
contentTemplate: 'src/jreleaser/changelog.tpl'
extraProperties:
categorizeScopes: 'true'
labelers:
- label: 'i18n'
title: 'regex:^(?:i18n(?:\(.*\))?!?):\s.*'
order: 120
- label: 'dependencies'
title: 'regex:^(?:deps(?:\(.*\))?!?):\s.*'
order: 130
- label: 'allcontributors1'
title: 'regex:^docs: update .all-contributorsrc.*'
order: -1
- label: 'allcontributors2'
title: 'regex:^docs: update CONTRIBUTORS.md.*'
order: -2
categories:
- title: '🌐 Translation'
key: 'i18n'
order: 70
labels:
- 'i18n'
- title: '⚙️ Dependencies'
key: 'dependencies'
order: 80
labels:
- 'dependencies'
- title: 'allcontributors'
order: 59
labels:
- 'allcontributors1'
- 'allcontributors2'
hide:
categories:
- 'merge'
- 'allcontributors'
contributors:
- 'GitHub'
- 'allcontributors'
- 'dependabot'
replacers:
- search: 'i18n: '
- search: 'deps: '
signing:
active: ALWAYS
armored: true
deploy:
maven:
nexus2:
maven-central:
active: RELEASE
url: https://s01.oss.sonatype.org/service/local
snapshotUrl: https://s01.oss.sonatype.org/content/repositories/snapshots
closeRepository: true
releaseRepository: true
stagingRepositories:
- build/repos/local/release
announce:
slack:
active: RELEASE
channel: '#field-engineering-announcements'
message: '🧨 RIOT {{projectVersion}} has been released! {{releaseNotesUrl}}'
assemble:
jlink:
riot-standalone:
active: ALWAYS
java:
version: '21'
imageName: '{{distributionName}}-{{projectEffectiveVersion}}'
executable: riot
fileSets:
- input: '.'
includes:
- LICENSE
jdeps:
multiRelease: base
ignoreMissingDeps: true
targets:
- 'plugins/riot/build/libs/riot-{{projectVersion}}.jar'
additionalModuleNames:
- 'java.security.sasl'
- 'java.security.jgss'
- 'jdk.crypto.cryptoki'
- 'jdk.crypto.ec'
- 'jdk.localedata'
- 'jdk.net'
- 'jdk.security.auth'
- 'jdk.security.jgss'
targetJdks:
- path: '{{jdkPathPrefix}}/zulu17Osx/{{jdkFilePrefix}}-macosx_x64/zulu-17.jdk/Contents/Home'
platform: 'osx-x86_64'
- path: '{{jdkPathPrefix}}/zulu17OsxArm/{{jdkFilePrefix}}-macosx_aarch64/zulu-17.jdk/Contents/Home'
platform: 'osx-aarch_64'
- path: '{{jdkPathPrefix}}/zulu17Linux/{{jdkFilePrefix}}-linux_x64'
platform: 'linux-x86_64'
- path: '{{jdkPathPrefix}}/zulu17LinuxArm/{{jdkFilePrefix}}-linux_aarch64'
platform: 'linux-aarch_64'
- path: '{{jdkPathPrefix}}/zulu17LinuxMusl/{{jdkFilePrefix}}-linux_musl_x64'
platform: 'linux_musl-x86_64'
- path: '{{jdkPathPrefix}}/zulu17LinuxMuslArm/{{jdkFilePrefix}}-linux_musl_aarch64'
platform: 'linux_musl-aarch_64'
- path: '{{jdkPathPrefix}}/zulu17Windows/{{jdkFilePrefix}}-win_x64'
platform: 'windows-x86_64'
- path: '{{jdkPathPrefix}}/zulu17WindowsArm/{{jdkFilePrefix}}-win_aarch64'
platform: 'windows-aarch_64'
mainJar:
path: 'plugins/riot/build/libs/riot-{{projectVersion}}.jar'
jars:
- pattern: 'plugins/riot/build/dependencies/flat/*.jar'
distributions:
riot:
brew:
active: ALWAYS
continueOnError: true
formulaName: riot
multiPlatform: true
repository:
active: RELEASE
commitMessage: 'riot {{tagName}}'
docker:
active: ALWAYS
continueOnError: true
repository:
active: ALWAYS
commitMessage: 'riot {{tagName}}'
registries:
- serverName: DEFAULT
repositoryName: riotx
labels:
'org.opencontainers.image.title': 'riot'
imageNames:
- 'riotx/{{distributionName}}:{{tagName}}'
- 'riotx/{{distributionName}}:latest'
buildx:
enabled: true
platforms:
- 'linux/amd64'
- 'linux/arm64'
scoop:
active: ALWAYS
continueOnError: true
repository:
active: RELEASE
name: 'scoop'
commitMessage: 'riot {{tagName}}'
artifacts:
- path: plugins/{{distributionName}}/build/distributions/{{distributionName}}-{{projectVersion}}.zip
transform: '{{distributionName}}/{{distributionName}}-{{projectEffectiveVersion}}.zip'
extraProperties:
skipSpec: 'true'
- path: plugins/{{distributionName}}/build/distributions/{{distributionName}}-{{projectVersion}}.tar
transform: '{{distributionName}}/{{distributionName}}-{{projectEffectiveVersion}}.tar'
extraProperties:
skipFlatpak: 'true'
riot-standalone:
appImage:
active: NEVER
componentId: com.redis.riot
developerName: Redis
categories:
- Development
repository:
active: RELEASE
name: riot-appimage
commitMessage: 'riot {{tagName}}'
files:
artifacts:
- path: VERSION
extraProperties:
skipChecksum: 'true'
skipSigning: 'true'
skipSbom: 'true'