assemblies.linux-launcher-distribution.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cross-platform-launcher-plugin Show documentation
Show all versions of cross-platform-launcher-plugin Show documentation
A Maven plugin that creates launchers for Windows
(using Janel), Mac OS X (creating a .app structure, or tree with shell
script) or Linux (using a shell script).
(Apache License v2) 2008-2024 Matt Gumbley, DevZendo.org
Note that the Universal Application Stub and Janel have separate licenses
as described in their included license files.
The newest version!
<assembly>
<id></id> <!-- no id since the artifact name is in the
.tar.gz, and that's descriptive enough -->
<formats>
<format>tar.gz</format>
</formats>
<baseDirectory>/</baseDirectory>
<includeBaseDirectory>true</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.build.directory}/linux</directory>
<outputDirectory>/</outputDirectory>
<excludes>
<exclude>bin/**</exclude>
</excludes>
<includes>
<include>lib/**</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.build.directory}/linux</directory>
<outputDirectory>/</outputDirectory>
<fileMode>0755</fileMode>
<includes>
<include>bin/**</include>
</includes>
</fileSet>
</fileSets>
</assembly> © 2015 - 2025 Weber Informatics LLC | Privacy Policy