Griffon uses it's lib directory structure to generate resources tags. For example if my project has a structure of:
lib
|
|--linux
| foo.jar
After running 'griffon package webstart' the jnlp file will have the following resource tag
<resources os='Linux' arch='x86_64'>
<jar href = "linux/foo.jar" />
</resources>
The box I'm running the webstart off of for some reason is not loading the jar file unless I remove the arch attribute.
- Is there a way I can tell griffon to not add an arch attribute?
- How does girffon decide that my jar is for a specific arch?