Is this a file to be extracted or just made available as is to the containers?
If its as is there is an option to specify a folder to be copied to the
container working dir ..
<package>
<type>folder</type>
<name>files/myFolder</name>
</package>
copies the content of files/myFolder from the package to the destination.
There is no support for extracting jars yet.
________________________________________
From: Timothy Potter <[email protected]>
Sent: Thursday, May 28, 2015 8:33 AM
To: [email protected]
Subject: Possible to package files as JAR?
Can we specify a JAR file instead of tgz or zip in the metainfo.xml, i.e.
instead of doing:
<osSpecifics>
<osSpecific>
<osType>any</osType>
<packages>
<package>
<type>tarball</type>
<name>files/solr.tgz</name>
</package>
</packages>
</osSpecific>
</osSpecifics>
can I do:
<osSpecifics>
<osSpecific>
<osType>any</osType>
<packages>
<package>
<type>tarball</type>
<name>files/solr.jar</name>
</package>
</packages>
</osSpecific>
</osSpecifics>
Of course JAR is just ZIP but this would make it more platform
independent because Slider should always be able to extract a JAR
file.