ココアプロジェクトがあり、Mavenでビルドしたいと思います。Objective-Cコードを構築するためのMavenプラグインはありますか?
質問する
2237 次
1 に答える
2
execプラグインを使用して、コマンドラインcocoaを実行しました。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>${cocoa.phase}</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>xcodebuild</executable>
<workingDirectory>${project.build.directory}/</workingDirectory>
</configuration>
</plugin>
于 2011-07-15T19:41:25.700 に答える