2

I am able to make native package / self-contained app but I do not know how to specify additional information such as vendor name, version number etc.

Where can I found list of these properties and how can I set them for package?

Yarl
  • 728
  • 1
  • 7
  • 26
  • Are you building a exe or what kind of package do you build? – André Schild May 11 '16 at 06:30
  • I am building .exe installer. Oracle documentation – https://docs.oracle.com/javase/8/docs/technotes/guides/deploy/self-contained-packaging.html. – Yarl May 14 '16 at 06:01

1 Answers1

3
javapackager -deploy -native installer -Bvendor=name -BappVersion=version ..etc

Bundler argument also has vendor so -vendor vendorName or -Bvendor=vendorName

hope it helps now, but try when you are free

Elltz
  • 10,730
  • 4
  • 31
  • 59
  • It is not working but problem is probably in parameters (vendor, appversion). Maybe in meanwhile I will investigate it. I am doing something else at this time. – Yarl Jul 30 '16 at 13:47
  • okay i have editted try when you are about to investigate.@Uzivatel828 – Elltz Jul 30 '16 at 15:31
  • How do you verify the `-Bvendor` parameter worked? Should the vendor name be visible in the `About` dialog box? I don't see the name anywhere. – Dem Pilafian Oct 29 '17 at 19:42
  • which os are you using? goto programs details or in the control panel in windows find your application and you will see the details below@DemPilafian – Elltz Nov 01 '17 at 02:15