I'm trying to integrate clojure into a continous build . Any suggestions for A clojure enabled system like Jenkins , that is capable of doing lthe work for me via a plugin? I've seen some ad hoc tutorials, but not sure if there is a clear accepted method. I notice that clojure itself is built using CI, and since it's a java dialect, I'm assuming maybe if no such options exist, theb maybe I could wrap a clojure build as a maven / ant task....

link|improve this question

56% accept rate
feedback

2 Answers

While Jenkins/Hudson is the most widely used for Clojure projects, you can use any CI system you like.

Clojure itself, all of the contrib projects, and various open source projects all use Maven to drive their builds and thereby can be hoisted into Hudson/Jenkins with relative ease. clojure-maven-plugin is what you're looking for to mirror such a setup.

You can also use Leiningen with Hudson/Jenkins (or really any other CI system) just by shelling out to lein as necessary. There is a somewhat clever way of setting this up through Jenkins itself here.

Finally, if you need ant, you can use clojure-ant-tasks.

link|improve this answer
3  
Another vote for Jenkins; I've had great success using it with Leiningen using nothing but a basic shell command. The link above is one way to do it, but there's nothing wrong with simply installing leiningen via apt rather than a separate CI job. – technomancy Oct 18 '11 at 23:48
feedback

You want to do all the work in either ant/maven/gradle etc. because you want to be able to easily build your project locally as well as on a CI system. Once you can build locally with a well known build framework, you just call the same tasks/goals in Jenkins and its super easy at that point, since Jenkins integrates nicely with most build frameworks like ant/maven/gradle.

link|improve this answer
So.... Is Leiningan an option for directly building ? It are you suggesting I should wrap Leiningan in maven/ant/gradle – jayunit100 Oct 19 '11 at 0:32
1  
Ant, Maven, Gradle, and Leiningen are peers, and the latter can be (and is) used independently of the others all the time. Whether it meets your requirements is a separate matter (e.g. leiningen has no distinct notion of a release like Maven does, but neither does ant or gradle). In any case, people call out to other build tools from their primary vehicle all the time, thus the maven tasks for ant, the maven antrun plugin, etc. Leiningen is actually built on top of the maven ant tasks, so there are multiple levels of turtles. :-) – Chas Emerick Oct 19 '11 at 13:52
feedback

Your Answer

 
or
required, but never shown

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