Re: Properly code-signing an app with bundled JRE

2014-01-28 Thread Paul Taylor

On 28/01/2014 18:12, Hendrik Schreiber wrote:

Hey..

it seems that Apple has changed the way codesign works. On Mavericks with 
current XCode, Unless you use the --deep option, your app isn't signed at all. 
And when you use --deep, it works fine as long as you don't bundle a JRE as 
plugin.

Is anybody else having this issue... and perhaps a solution?

Thanks,

-hendrik

PS: I'd be very surprised, if the official Oracle recommendation 
(http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/packagingAppsForMac.html)
 actually still worked.
  ___
Do not post admin requests to the list. They will be ignored.
Java-dev mailing list  (java-...@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/java-dev/paul_t100%40fastmail.fm

This email sent to paul_t...@fastmail.fm
I can confirm I had to change it to use --deep option a while ago for it 
to work, I do bundle it with a jre and it still works, but maybe not as 
a plugin not sure what you mean here.


Paul



Re: Properly code-signing an app with bundled JRE

2014-01-28 Thread Steve Hannah
Those Oracle instructions have never worked for me.  I needed to sign the
bundled JRE, then sign the .app.

Steve


On Tue, Jan 28, 2014 at 10:28 AM, Paul Taylor paul_t...@fastmail.fm wrote:

 On 28/01/2014 18:12, Hendrik Schreiber wrote:

 Hey..

 it seems that Apple has changed the way codesign works. On Mavericks with
 current XCode, Unless you use the --deep option, your app isn't signed at
 all. And when you use --deep, it works fine as long as you don't bundle a
 JRE as plugin.

 Is anybody else having this issue... and perhaps a solution?

 Thanks,

 -hendrik

 PS: I'd be very surprised, if the official Oracle recommendation (
 http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/
 packagingAppsForMac.html) actually still worked.
   ___
 Do not post admin requests to the list. They will be ignored.
 Java-dev mailing list  (java-...@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 https://lists.apple.com/mailman/options/java-dev/paul_t100%40fastmail.fm

 This email sent to paul_t...@fastmail.fm

 I can confirm I had to change it to use --deep option a while ago for it
 to work, I do bundle it with a jre and it still works, but maybe not as a
 plugin not sure what you mean here.

 Paul




-- 
Steve Hannah
Web Lite Solutions Corp.


Re: Properly code-signing an app with bundled JRE

2014-01-28 Thread Hendrik Schreiber
On Jan 28, 2014, at 19:28, Paul Taylor paul_t...@fastmail.fm wrote:

 This email sent to paul_t...@fastmail.fm
 I can confirm I had to change it to use --deep option a while ago for it to 
 work, I do bundle it with a jre and it still works, but maybe not as a plugin 
 not sure what you mean here.

I package the JRE into MyApp.app/Contents/PlugIns/jre - so in essence it's a 
plugin.

Would you mind sharing your codesign call, Paul?

Thank you.

-hendrik