-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjreleaser.yml
More file actions
55 lines (52 loc) · 1.84 KB
/
jreleaser.yml
File metadata and controls
55 lines (52 loc) · 1.84 KB
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
environment:
properties:
jdkPathPrefix: 'target/jdks'
jdkFilePrefix: 'zulu21.32.13-ca-jdk21.0.2'
project:
name: jruby-jrelease
description: JRuby by JReleaser
longDescription: JRuby by JReleaser
links:
homepage: https://github.com/jruby/jruby
authors:
- Charles Oliver Nutter
license: EPL-2.0
inceptionYear: 2001
stereotype: CLI
languages:
java:
version: 21
groupId: org.jruby
artifactId: jruby-complete
mainClass: org.jruby.Main
mainModule: org.jruby.jruby-complete
release:
github:
overwrite: true
changelog:
formatted: ALWAYS
preset: conventional-commits
contributors:
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
assemble:
jlink:
helloworld:
active: ALWAYS
imageName: '{{distributionName}}-{{projectVersion}}'
targetJdks:
- path: '{{jdkPathPrefix}}/zulu21OsxIntel/{{jdkFilePrefix}}-macosx_x64/zulu-21.jdk/Contents/Home'
platform: 'osx-x86_64'
- path: '{{jdkPathPrefix}}/zulu21OsxArm/{{jdkFilePrefix}}-macosx_aarch64/zulu-21.jdk/Contents/Home'
platform: 'osx-aarch_64'
- path: '{{jdkPathPrefix}}/zulu21LinuxIntel/{{jdkFilePrefix}}-linux_x64'
platform: 'linux-x86_64'
- path: '{{jdkPathPrefix}}/zulu21LinuxMuslIntel/{{jdkFilePrefix}}-linux_musl_x64'
platform: 'linux_musl-x86_64'
- path: '{{jdkPathPrefix}}/zulu21LinuxArm/{{jdkFilePrefix}}-linux_aarch64'
platform: 'linux-aarch_64'
- path: '{{jdkPathPrefix}}/zulu21WindowsIntel/{{jdkFilePrefix}}-win_x64'
platform: 'windows-x86_64'
- path: '{{jdkPathPrefix}}/zulu21WindowsArm/{{jdkFilePrefix}}-win_aarch64'
platform: 'windows-aarch_64'
mainJar:
path: 'target/{{distributionName}}-{{projectVersion}}.jar'