The Leiningen compilation task seems to be looking for source packages to run immediately in the / src directory. I use both Java and Clojure in my project, so my / src directory looks like this:
/src/java/myapp /src/clojure/myapp
Leiningen is currently looking for / src / myapp , and it does not work at compile time.
Related, I would like to know how to manually add directories to the class path for compiling and replicating Leiningen. For example, the Enlive deftemplate function will look for the class path for a file with a named template. Adding / templates to the classpath will be necessary to properly create and run my project.
source share