質問

私はココアのプロジェクトを持っていると私はのmavenでそれを構築したいと思います。 Objective-Cのコードをビルドするための任意の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>
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top