forked from mjul/docjure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
17 lines (16 loc) · 836 Bytes
/
project.clj
File metadata and controls
17 lines (16 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject dk.ative/docjure "1.9.0-SNAPSHOT"
:description "Easily read and write Office documents from Clojure."
:url "http://github.com/mjul/docjure"
:license {:name "MIT License"
:url "http://http://en.wikipedia.org/wiki/MIT_License"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.apache.poi/poi "3.11"]
[org.apache.poi/poi-ooxml "3.11"]]
:plugins [[lein-difftest "2.0.0"]]
:profiles {:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:test {:global-vars {*warn-on-reflection* false}}}
:aliases {"all" ["with-profile" "1.3:1.4:1.5:1.6"]}
:global-vars {*warn-on-reflection* true})