Build tools and dependencies for objective-c like ant + ivy / maven?

I am looking for a good build and dependency tool for objective-c, like ant for build and ivy for dependencies.

I know that there are several maven plugins for xcode:

https://github.com/jendave/maven-xcodebuild-plugin

But I'm looking for a community read about what is recommended. In fact, I don’t see many resources on this front at all.

However, there are many references to using Hudson for continuous integration with project objects, such as:

http://nachbaur.com/blog/how-to-automate-your-iphone-app-builds-with-hudson

I am looking for more directions on the assembly side.

+5
source share
1 answer

For dependencies you can use CocoaPods . There is a tool (command line) that comes with Xcode called xcodebuild. Documents can be found by running man xcodebuildfrom the command line. I do not know anything that combines the two, but I could be wrong. You can write a script to combine them and then call the script from Hudson. The problem with Hudson is that it should work on a Mac, so it has access to the header and command line tools.

+2
source

All Articles