我正在尝试使用 Maven+Tycho 构建系统对我的 Eclipse RCP 应用程序进行代码签名。
我将这段代码添加到我的 pom.xml 中,以便对在 OS X 机器上创建的 .app 进行签名:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>exec</id>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>codesign</executable>
<workingDirectory>/tmp</workingDirectory>
<arguments>
<argument>-s</argument>
<argument>"My Developer ID"</argument>
<argument>-vvv</argument>
<argument>${project.build.directory}/products/${product-id}/macosx/cocoa/x86/MyApp/MyApp.app"</argument>
</arguments>
</configuration>
</plugin>
但它一直给我这个错误:
“我的开发者 ID”:找不到身份
我阅读了有关解锁钥匙串的信息,但它确实对我的构建没有影响。是的,我从拥有该证书的同一帐户以 mvn clean install 的形式运行构建。
有没有人设法解决这个问题?谢谢!