forked from franks42/clj-ns-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
25 lines (25 loc) · 1.12 KB
/
project.clj
File metadata and controls
25 lines (25 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(defproject clj-ns-browser "1.3.2-SNAPSHOT"
:description "Smalltalk-like namespace/class/var/function browser for Clojure."
:url "https://github.com/franks42/clj-ns-browser"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.0"]
[seesaw "1.4.3"]
[org.clojure/tools.namespace "0.1.3"]
[org.clojure/tools.trace "0.7.3"]
[clojure-complete "0.2.1" :exclusions [org.clojure/clojure]]
[org.thnetos/cd-client "0.3.6"]
[hiccup "1.0.2"]
[clj-info "0.3.1"]
]
:dev-dependencies [[lein-marginalia "0.7.1"]
;[franks42/debug-repl "0.3.1-FS"]
[codox "0.6.4"]]
:jvm-opts ~(if (= (System/getProperty "os.name") "Mac OS X") ["-Xdock:name=Clj-NS-Browser"] [])
:java-source-paths ["src"]
:java-source-path "src"
;; Use this for Leiningen version 1
:resources-path "resource"
;; Use this for Leiningen version 2
:resource-paths ["resource"]
:main clj-ns-browser.core)