Page 1 of 1

How to specify vendor in JNLP file?

Posted: 24 Aug 2020, 15:44
by joelchrist
Hi there!

I want to specify the vendor in the JNLP file, same way I can specify the version.

<resources>
<j2se version="1.8*"/>
</resources>

Thanks in advance!

Re: How to specify vendor in JNLP file?

Posted: 24 Aug 2020, 16:17
by Th3WalkingDad
Hi,

It's described there isn't it ? (JNLP syntax)

Re: How to specify vendor in JNLP file?

Posted: 24 Aug 2020, 17:17
by Stephan Classen
no, the vendor is an attribute which was introduced by open web start so you will not find it in any oracle documentation.

Basically you can add an attribute "vendor" to the <j2se> or <java> element:

<resources>
<j2se version="1.8*" vendor="Amazon"/>
</resources>