Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Explanation/documentation of leiningen's defproject macro

Leiningen's defproject macro is an important part of Clojure projects. However, information/documentation about it seems to be very sparse.

What are all of the options that defproject supports, and what are they used for?

like image 427
Matt Fenwick Avatar asked Oct 25 '11 18:10

Matt Fenwick


2 Answers

AFAIK the sample project.clj shows all the available configuration options, all with a usage description.

like image 195
skuro Avatar answered Jan 01 '23 22:01

skuro


A good place to get the information when the documentation is in the source code of the defproject macro.

like image 31
Vincent Cantin Avatar answered Jan 01 '23 21:01

Vincent Cantin