forked from karlmikko/odin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
20 lines (19 loc) · 923 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject com.tbaldridge/odin "0.3.0-SNAPSHOT"
:description "A declarative query DSL for Clojure"
:url "http://github.com/halgari/odin"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0-alpha13"]
[org.clojure/clojurescript "1.9.293"]
[org.clojure/test.check "0.9.0"]]
;:jvm-opts ["-agentpath:/Users/tim/lib/libyjpagent.jnilib"]
:profiles {:dev {:dependencies [[org.clojure/data.xml "0.0.8"]
[com.datomic/datomic-free "0.9.5544"]]}}
:plugins [[autodoc/lein-autodoc "1.1.1"]
[lein-doo "0.1.7"]
[lein-cljsbuild "1.1.4"]]
:cljsbuild
{:builds [{:id "test"
:source-paths ["src" "test"]
:compiler {:output-to "resources/public/js/testable.js"
:optimizations :simple}}]})