7
我有一個可可項目,我想用maven構建它。有沒有用於構建Objective-C代碼的Maven插件?用maven構建可可項目
我有一個可可項目,我想用maven構建它。有沒有用於構建Objective-C代碼的Maven插件?用maven構建可可項目
我已經使用exec插件來運行命令行可可以很好的影響。
<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>