All Downloads are FREE. Search and download functionalities are using the official Maven repository.

linux.assembly.xml.vtl Maven / Gradle / Ivy

Go to download

Hybrid Maven/Gradle plugin to package Java applications as native Windows, Mac OS X or GNU/Linux executables and create installers for them

The newest version!
<?xml version="1.0" encoding="utf-8"?>
<assembly
	xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
	<id>bundle</id>
	<includeBaseDirectory>false</includeBaseDirectory>
	<fileSets>
		<fileSet>
			<outputDirectory>${info.name}</outputDirectory>
			<directory>${info.outputDirectory}/${info.name}</directory>
			<excludes>
				<exclude>${info.executable.name}</exclude>
#if ($info.bundleJre)				
				<exclude>${info.jreDirectoryName}/bin/*</exclude>
				<exclude>${info.jreDirectoryName}/lib/jspawnhelper</exclude>
				<exclude>scripts/*</exclude>
#end
			</excludes>
		</fileSet>
		<fileSet>
			<outputDirectory>${info.name}</outputDirectory>
			<directory>${info.outputDirectory}/${info.name}</directory>
			<includes>
				<include>${info.executable.name}</include>
#if ($info.bundleJre)				
				<include>${info.jreDirectoryName}/bin/*</include>
				<include>${info.jreDirectoryName}/lib/jspawnhelper</include>
				<include>scripts/*</include>
#end
			</includes>
			<fileMode>0755</fileMode>
		</fileSet>
	</fileSets>
</assembly>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy