适用于 iOS 和 Mac 项目的构建工具
我不喜欢依赖 IDE (Xcode) 来构建我的项目,我想要一个适用于 iOS 和 Mac 项目的 IDE-Free 构建工具。
在 Java 中我们可以使用 Ant、Maven、Gradle、Raven...
I don't like to depend on the IDE (Xcode) to build my projects, I want an IDE-Free build tool for iOS and Mac projects.
In Java we could use Ant, Maven, Gradle, Raven...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
几周前,我们开源了 XCode Maven 插件。在 SAP,我们使用它通过 Maven 集中构建所有 iOS 应用程序和库,并以符合产品标准的方式管理依赖项。
Maven 中心的一些概述文档和二进制文件仍然缺失,但源代码和技术文档已经可以在 Github 上找到。如果您有疑问,请写信给我们的邮件列表。我们会尽力帮助您。
xcode-maven-plugin1
克斯
亲切的问候,亚历
We open-sourced our XCode Maven plug-in some weeks ago. At SAP we use it to build all our iOS apps and libraries centrally with Maven and manage dependencies in a product standard compliant way.
Some overview documentation and binaries on Maven central are still missing, but the sources and technical documentation are already available on Github. If you have questions please write to our mailing list. We will try to help you.
xcode-maven-plugin1
xcode-maven-plugin2
Kind regards, Alex
我们成功地使用 ant 构建 iOS 项目。基本上我们需要它来持续集成(我们使用 Jenkins)。大多数开发人员更喜欢使用 XCode IDE,但其中一些人有时(我想说很少)使用 ant 在快速进行小更改后从控制台快速构建项目。
基本上你需要使用 ant 任务调用 xcodebuild。但如果您需要更复杂的示例,请谷歌搜索 jenkins(或 hudson)+ xcode(或 iOS、iPhone)。
We use successfully ant for building iOS projects. Basically we need it for continues integration (we use Jenkins). Most developers prefer using XCode IDE, but some of them sometimes (I would say rarely) use ant for quickly building projects from console after quick small change.
Basically you need to call xcodebuild using ant task. But if you need more complex examples google for jenkins (or hudson) + xcode (or iOS, iPhone).