|
| 1 | +environment: |
| 2 | + properties: |
| 3 | + jdkPathPrefix: 'target/jdks' |
| 4 | + jdkFilePrefix: 'zulu17.32.13-ca-jdk17.0.2' |
| 5 | + |
| 6 | +project: |
| 7 | + name: helloworld |
| 8 | + description: HelloWorld in Java |
| 9 | + longDescription: HelloWorld in Java |
| 10 | + links: |
| 11 | + homepage: https://github.com/jreleaser/helloworld-java-jlink |
| 12 | + authors: |
| 13 | + - Andres Almiray |
| 14 | + license: APACHE-2.0 |
| 15 | + inceptionYear: 2023 |
| 16 | + stereotype: cli |
| 17 | + java: |
| 18 | + version: 11 |
| 19 | + groupId: org.jreleaser.examples |
| 20 | + artifactId: helloworld |
| 21 | + mainClass: org.jreleaser.examples.HelloWorld |
| 22 | + mainModule: org.jreleaser.examples |
| 23 | + |
| 24 | +release: |
| 25 | + github: |
| 26 | + overwrite: true |
| 27 | + changelog: |
| 28 | + formatted: ALWAYS |
| 29 | + preset: conventional-commits |
| 30 | + contributors: |
| 31 | + format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}' |
| 32 | + |
| 33 | +assemble: |
| 34 | + jlink: |
| 35 | + helloworld: |
| 36 | + active: ALWAYS |
| 37 | + imageName: '{{distributionName}}-{{projectVersion}}' |
| 38 | + targetJdks: |
| 39 | + - path: '{{jdkPathPrefix}}/zulu17OsxIntel/{{jdkFilePrefix}}-macosx_x64/zulu-17.jdk/Contents/Home' |
| 40 | + platform: 'osx-x86_64' |
| 41 | + - path: '{{jdkPathPrefix}}/zulu17OsxArm/{{jdkFilePrefix}}-macosx_aarch64/zulu-17.jdk/Contents/Home' |
| 42 | + platform: 'osx-aarch_64' |
| 43 | + - path: '{{jdkPathPrefix}}/zulu17LinuxIntel/{{jdkFilePrefix}}-linux_x64' |
| 44 | + platform: 'linux-x86_64' |
| 45 | + - path: '{{jdkPathPrefix}}/zulu17LinuxMuslIntel/{{jdkFilePrefix}}-linux_musl_x64' |
| 46 | + platform: 'linux_musl-x86_64' |
| 47 | + - path: '{{jdkPathPrefix}}/zulu17LinuxArm/{{jdkFilePrefix}}-linux_aarch64' |
| 48 | + platform: 'linux-aarch_64' |
| 49 | + - path: '{{jdkPathPrefix}}/zulu17WindowsIntel/{{jdkFilePrefix}}-win_x64' |
| 50 | + platform: 'windows-x86_64' |
| 51 | + - path: '{{jdkPathPrefix}}/zulu17WindowsArm/{{jdkFilePrefix}}-win_aarch64' |
| 52 | + platform: 'windows-aarch_64' |
| 53 | + mainJar: |
| 54 | + path: 'target/{{distributionName}}-{{projectVersion}}.jar' |
0 commit comments