我正在构建一个 Maven+Tycho Eclipse RCP 应用程序,我想在将产品压缩为 zip 之前以及在二进制文件被压缩以在存储库/二进制文件中分发之前在 OS X 上运行我的 codesign maven-exec-plugin。
所以我认为这一步应该在编译和打包之间,但我很难通过反复试验。它应该绑定到哪个生命周期构建阶段?
我的 maven-exec-plugin 目前看起来像这样(应用程序得到了代码签名,但在 zip 已经创建之后):
<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>