META-INF.jreleaser.templates.native-image.gofish.food.lua.tpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jreleaser-templates Show documentation
Show all versions of jreleaser-templates Show documentation
JReleaser packager templates
The newest version!
-- {{jreleaserCreationStamp}}
local name = "{{distributionExecutableName}}"
local version = "{{projectVersion}}"
food = {
name = name,
description = "{{projectDescription}}",
license = "{{projectLicense}}",
homepage = "{{projectLinkHomepage}}",
version = version,
packages = {
{{#gofishPackages}}
{
os = "{{packageOs}}",
arch = "{{packageArch}}",
url = "{{packageUrl}}",
sha256 = "{{packageChecksum}}",
resources = {
{
path = {{packagePath}},
installpath = {{packageInstallPath}}{{#packageNotWindows}},{{/packageNotWindows}}
{{#packageNotWindows}}executable = true{{/packageNotWindows}}
}
}
},
{{/gofishPackages}}
}
}