I'm looking for a build tool (such as ant, maven, make, etc.) that uses JSON-based configuration files?

Does such a tool exist?

link|improve this question
4  
Why oh why would you want such an horror? – JB Nizet Feb 17 at 18:55
since you include ANT and Maven we must assume you're building java code. – Mark O'Connor Feb 18 at 17:25
I'm not building a Java app and I don't understand why JSON should be more of an horror compared to XML. Other way around, I guess ;) – Michael Hausenblas Feb 18 at 18:40
feedback

3 Answers

Nokia/Qt just announced their "QBS" build system, which is JSON-based, and is actually a build engine intended for easy adoption by IDEs (a principal reason for adopting JSON).

Introducing qbs

Rather than a "pre-make" generator of Makefiles/vcprojs/etc. (like CMake and QMake, etc.), qbs is intended to actually be the build engine.

link|improve this answer
feedback

Google turned up Gaudi though it is still in the early phases.

link|improve this answer
feedback

I think what you're really looking for is a build tool that doesn't force you to configure everything in XML?

In that case your best bet is Gradle. It doesn't have the same sort of adoption as ANT or Maven, but does have the advantage of learning lessons from both.

I would advise you to beware of straying from standard build tooling... It makes life tougher for others attempting to build your code. This is something Gradle solved by providing a build wrapper.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.