Build tool for iOS and Mac projects

I don’t like to depend on an IDE (Xcode) to create my projects, I want an IDE-Free build tool for iOS and Mac projects.
In Java, we could use Ant, Maven, Gradle, Raven ...

+4
source share
2 answers

We opened our Xcode Maven plugin a few weeks ago. At SAP, we use it to create all of our iOS applications and libraries centrally using Maven and dependency management using a standard compatible with the product.

Some overview documents and binaries on the central Maven server are still missing, but sources and technical documentation are already available on Github. If you have questions, write to our mailing list. We will try to help you.

xcode-maven-plugin1
xcode-maven-plugin2

Regards, Alex

+4
source

We successfully use ant to create iOS projects. Basically, we need this to continue the integration (we use Jenkins). Most developers prefer to use the Xcode IDE, but some of them sometimes (I would say rarely) use ant to quickly create projects from the console after quick small changes.

Basically you need to call xcodebuild using ant task . But if you need more complex google examples for jenkins (or hudson) + xcode (or iOS, iPhone).

+2
source

Source: https://habr.com/ru/post/1339634/


All Articles