Xcode goes out of the box with Ant support (with a few sample projects you can create).
How to configure Xcode to use maven pom.xml files?
Before linking to the project I'm trying to set up, is here:
It uses subfolders, each with its own pom.xml, all are managed using the usual maven build goals:
- mvn clean install
- mvn install -o
- mvn install -o -DskipTests
What creates the problem are nested modules; each of which is installed in the local ~ / .m2 / repository.
For comparison: the eclipse build system refers to banks in ~ / .m2 / repository for external dependencies, but allows the modules in the project to refer to each other.
I need a way to configure something similar for Xcode.
maven xcode geotools
Jody garnett
source share