forked from tomfaulhaber/excel-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
15 lines (15 loc) · 878 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject com.madriska/excel-templates "0.3.3.1"
;; forked from com.infolace/excel-templates 0.3.3
:description "Build Excel files by combining a template with plain old data"
:url "https://github.com/tomfaulhaber/excel-templates"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.apache.commons/commons-lang3 "3.4"]
[org.apache.poi/poi-ooxml "3.10-FINAL"]
[org.apache.poi/ooxml-schemas "1.1"]
[org.clojure/data.zip "0.1.1" :exclusions [[org.clojure/clojure]]]
[joda-time "2.7"]]
:repositories [["central" "https://repo1.maven.org/maven2"]
["clojars" {:url "https://clojars.org/repo"
:sign-releases false}]]
:profiles {:repl {:dependencies [[org.clojure/clojure "1.7.0"]]}})