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

windows.msm.wxs.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!
#set ($name = $info.name.replaceAll("[^A-Za-z0-9_.]", "_"))
#if ($info.arch.toMsiArchitecture() == "arm64")
    #set ($installedVersion = "500")
#else
    #set ($installedVersion = "200")
#end
#set ($id = 0)
#macro(list $file)
	#set($guid = $GUID.randomUUID())
	#set($id = $id + 1)
	#if($file.isDirectory())
	    #if($file.equals(${info.appFolder}))
		
		#else
		
		#end
		#foreach($child in $file.listFiles())
			#list($child)
		#end
		
	#else
		
	    #if($file.equals(${info.executable}))
	    	
				
	    	
			
			
		#else
			
		#end
		
	#end
#end


	
		
		
			#list(${info.appFolder})
			
#if ($info.winConfig.registry)
			
#foreach ($entry in $info.winConfig.registry.entries)
				
					
				
#end
			
#end
		
	




© 2015 - 2024 Weber Informatics LLC | Privacy Policy