-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathproject.clj
More file actions
16 lines (16 loc) · 790 Bytes
/
project.clj
File metadata and controls
16 lines (16 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject autodoc "1.1.3-SNAPSHOT"
:description "A tool to build HTML documentation from your Clojure source"
:url "https://github.com/tomfaulhaber/autodoc"
:license {:name "Eclipse Public License"
:url "https://www.eclipse.org/legal/epl-v10.html"}
:main autodoc.autodoc
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/core.memoize "0.5.6"]
[org.clojure/data.json "0.1.1"]
[org.clojure/data.zip "0.1.0"]
[org.clojure/tools.namespace "0.2.11"]
[enlive "1.0.0" :exclusions [org.clojure/clojure]]
[leiningen-core "2.5.2"]
[autodoc/autodoc-collect "1.1.4"]]
:deploy-repositories [["releases" :clojars]]
:profiles {:uberjar {:aot :all}})