Is it possible to include (import?) other files into the project.clj for a clojure project? (leiningen, specifically).

eg we have:

(defproject sample-clojure-cloudbees "1.0.0-SNAPSHOT"
  :description "Sample clojure application - clojure 1.3 !"
  :some-key "some value")

It would be nice to define more things like :some-key in files other than project.clj.

link|improve this question

Michael, can you clarify your intent? Would you simply like to include other projects that should be compiled? For that you can specify dependencies and those dependencies can have their own project.clj file. Example (Then see the other parts under the 'modules' directory). – Paul Oct 12 '11 at 10:39
1  
See my answer for your other question, stackoverflow.com/questions/7738628/… – Hamza Yerlikaya Oct 12 '11 at 11:15
Paul - simply to have some config entries in an external file - in this case secrets which I will add to .gitignore - yet the project.clj will clearly "document" that you need to provide secrets by including this file. I do something similar with the play framework configuration, for example (if that means anything !). – Michael Neale Oct 12 '11 at 22:04
feedback

1 Answer

up vote 1 down vote accepted

There's no reason that defproject has to be a top-level form. You can construct a call to defproject by building up an argument list. The only catch is that defproject is a macro, so the straightforward "apply" function won't help.

(def extra-args (read-string (slurp "project-extension.clj")))
(eval (concat '(defproject sample-clojure-cloudbees "1.0.0-SNAPSHOT")
                extra-args))

Note that this is reading a file, then evaluating the elements from that file. Be sure you know where the file is coming from!

link|improve this answer
sure - in this case the external file is local and private settings. I am still tripped up by macros in the case of things like this, thanks for pointing that out ! – Michael Neale Oct 12 '11 at 22:07
sounds good - I wonder if others would consider this useful enough to be a function in leiningen itself? – Michael Neale Oct 16 '11 at 22:54
feedback

Your Answer

 
or
required, but never shown

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