-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjreleaser-modules.yml
55 lines (52 loc) · 1.88 KB
/
jreleaser-modules.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
environment:
properties:
jdkPathPrefix: 'target/jdks'
jdkFilePrefix: 'zulu17.32.13-ca-jdk17.0.2'
project:
name: helloworld
description: HelloWorld in Java
longDescription: HelloWorld in Java
links:
homepage: https://github.com/jreleaser/helloworld-java-jlink
authors:
- Andres Almiray
license: APACHE-2.0
inceptionYear: 2023
stereotype: CLI
languages:
java:
version: 11
groupId: org.jreleaser.examples
artifactId: helloworld
mainClass: org.jreleaser.examples.HelloWorld
mainModule: org.jreleaser.examples
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}}/zulu17OsxIntel/{{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}}/zulu17LinuxIntel/{{jdkFilePrefix}}-linux_x64'
platform: 'linux-x86_64'
- path: '{{jdkPathPrefix}}/zulu17LinuxMuslIntel/{{jdkFilePrefix}}-linux_musl_x64'
platform: 'linux_musl-x86_64'
- path: '{{jdkPathPrefix}}/zulu17LinuxArm/{{jdkFilePrefix}}-linux_aarch64'
platform: 'linux-aarch_64'
- path: '{{jdkPathPrefix}}/zulu17WindowsIntel/{{jdkFilePrefix}}-win_x64'
platform: 'windows-x86_64'
- path: '{{jdkPathPrefix}}/zulu17WindowsArm/{{jdkFilePrefix}}-win_aarch64'
platform: 'windows-aarch_64'
mainJar:
path: 'target/{{distributionName}}-{{projectVersion}}.jar'