META-INF.jreleaser.templates.single-jar.jib.executable.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!
#!/bin/sh
# {{jreleaserCreationStamp}}
{{#distributionJavaMainModule}}
$JAVA_HOME/bin/java $JAVA_OPTS \
-p /{{jibWorkingDirectory}}/{{distributionArtifactFileName}}/lib/{{distributionArtifactFile}} \
-m {{distributionJavaMainModule}}/{{distributionJavaMainClass}} \
"$@"
{{/distributionJavaMainModule}}
{{^distributionJavaMainModule}}
$JAVA_HOME/bin/java $JAVA_OPTS \
-jar /{{jibWorkingDirectory}}/{{distributionArtifactFileName}}/lib/{{distributionArtifactFile}} \
"$@"
{{/distributionJavaMainModule}}