-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (18 loc) · 784 Bytes
/
project.clj
File metadata and controls
18 lines (18 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject tardis-clj "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "GNU General Public License Version 3"
:url "https://www.gnu.org/licenses/gpl-3.0.txt"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/core.typed "0.2.44"]
[org.clojure/data.csv "0.1.2"]
[org.clojure/tools.logging "0.3.0"]
[me.raynes/fs "1.4.5"]
[clj-time "0.7.0"]
[amazonica "0.2.12"]]
:main ^:skip-aot tardis-clj.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}}
:test-selectors {:default (complement :integration)
:integration :integration
:all (fn [_] true)})