-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
46 lines (34 loc) · 1.75 KB
/
project.clj
File metadata and controls
46 lines (34 loc) · 1.75 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
(defproject grafter/grafter.tabular-2 "2.1.1-SNAPSHOT"
:description "Tools for the hard graft of data processing"
:url "http://grafter.org/"
:license {:name "Eclipse Public License - v1.0"
:url "https://www.eclipse.org/legal/epl-v10.html"}
:deploy-repositories [["releases" :clojars]]
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/tools.logging "0.3.1"]
[grafter "2.1.0"] ;; depends on grafter.rdf.protocols
[commons-io/commons-io "2.4"]
[me.raynes/fs "1.4.6"]
[potemkin "0.4.3"]
[org.clojure/data.csv "0.1.3"]
[grafter/clj-excel "0.0.9" :exclusions [commons-codec]]
[incanter/incanter-core "1.5.7" :exclusions [net.sf.opencsv/opencsv commons-codec]]]
:codox {:defaults {:doc "FIXME: write docs"
:doc/format :markdown}
:output-dir "api-docs"
;; TODO change this when we merge back to master
:src-dir-uri "http://github.com/Swirrl/grafter/blob/0.8.x-SNAPSHOT/"
:src-linenum-anchor-prefix "L"}
;; Prevent Java process from appearing as a GUI app in OSX when
;; Swing classes are loaded.
:jvm-opts ["-Dapple.awt.UIElement=true"]
:pedantic? true
:profiles {
:dev {:plugins [[com.aphyr/prism "0.1.1"] ;; autotest support simply run: lein prism
[codox "0.8.10"]]
:dependencies [[com.aphyr/prism "0.1.3"]
[org.slf4j/slf4j-simple "1.7.21"]
[prismatic/schema "1.1.3"]
[criterium "0.4.4"]]
:resource-paths ["dev/resources"]
:env {:dev true}}})