<p></p>
<blockquote>
<p>If it is just re-using the jpackage mac signing params than it might not work.</p>
</blockquote>
<p>It might not.  If it doesn't we could fork it and add what it needed to make it work , doing all the packaging tasks in java.<br>
Here is the pulgin's gradle task with all the configurable properties:  <a href="https://github.com/petr-panteleyev/jpackage-gradle-plugin/blob/master/src/main/java/org/panteleyev/jpackage/JPackageTask.java">https://github.com/petr-panteleyev/jpackage-gradle-plugin/blob/master/src/main/java/org/panteleyev/jpackage/JPackageTask.java</a></p>
<p>Here are the mac os (signing) related <code>jpackage</code> params.  There are set in the build file's jpackage-plugin config:</p>
<pre><code>      // OS X specific parameters    
      private String macPackageIdentifier;    
      private String macPackageName;    
      private String macPackageSigningPrefix;    
      private boolean macSign;    
      private String macSigningKeychain;    
      private String macSigningKeyUserName;
</code></pre>
<pre><code>      if (isMac()) {
        addParameter(parameters, "--mac-package-identifier", macPackageIdentifier);            
        addParameter(parameters, "--mac-package-name", macPackageName);            
        addParameter(parameters, "--mac-package-signing-prefix", macPackageSigningPrefix);            
        addParameter(parameters, "--mac-sign", macSign);            
        addParameter(parameters, "--mac-signing-key-user-name", macSigningKeyUserName);            
        addFileParameter(parameters, "--mac-signing-keychain", macSigningKeychain);        
      } 
</code></pre>
<p>Does it look like the OS X config params are missing something Bisq's <code>desktop/package/package.gradle</code> needs?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/bisq-network/projects/issues/51#issuecomment-855911249">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AJFFTNUOSWVJGE4YSE7LBFTTRTAFFANCNFSM43TW3JJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AJFFTNRL5FBDEPEI3LM3JLTTRTAFFA5CNFSM43TW3JJ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOGMCCWUI.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/bisq-network/projects/issues/51#issuecomment-855911249",
"url": "https://github.com/bisq-network/projects/issues/51#issuecomment-855911249",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>