Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cross-project-issues-dev] OS X application signing

Nope, this just complains about not finding ICE.app. I’ve posted to cbi-dev and will see if they can help.
Thanks

On Mar 1, 2016, at 2:30 PM, David M Williams <david_williams@xxxxxxxxxx> wrote:

I think for the "signFiles" you need *just* the file name. (ICE.app in your case). The "place" it is looking for that, is different than your "whole build directory".

cbi-dev is a good list to ask questions like this.




From:        Greg Watson <g.watson@xxxxxxxxxxxx>
To:        cross-project-issues-dev@xxxxxxxxxxx,
Date:        03/01/2016 01:50 PM
Subject:        [cross-project-issues-dev] OS X application signing
Sent by:        cross-project-issues-dev-bounces@xxxxxxxxxxx




Has anyone been able to get OS X application signing to work?

I added the following to our build:

                  <plugin>
                      <groupId>org.eclipse.cbi.maven.plugins</groupId>
                      <artifactId>eclipse-macsigner-plugin</artifactId>
                      <version>${cbi-plugins.version}</version>
                      <executions>
                          <execution>
                              <goals>
                                  <goal>sign</goal>
                              </goals>
                              <phase>package</phase>
                                                                   <configuration>
                                                                                    <signFiles>
                                                                                                     <signFile>${project.build.directory}/products/ice.product/macosx/cocoa/x86_64/ICE.app</signFile>
                                                                                    </signFiles>
                                                                   </configuration>
                          </execution>
                      </executions>
                  </plugin>

When the build runs, it says:

[INFO] --- eclipse-macsigner-plugin:1.1.3:sign (default) @ org.eclipse.ice.repository ---
[INFO] [Tue Mar 01 12:42:09 EST 2016] Signing OS X application '/jobs/genie.ice/ice-next/workspace/ice/org.eclipse.ice.repository/target/products/ice.product/macosx/cocoa/x86_64/ICE.app'...

However, the codesign command says:

$ codesign --verify ICE.app
ICE.app: code object is not signed at all
In architecture: x86_64

Any help or suggestions appreciated.

Greg
_______________________________________________
cross-project-issues-dev mailing list
cross-project-issues-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev



_______________________________________________
cross-project-issues-dev mailing list
cross-project-issues-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/cross-project-issues-dev


Back to the top