forked from daveliepmann/uruk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
14 lines (14 loc) · 843 Bytes
/
project.clj
File metadata and controls
14 lines (14 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(defproject uruk "0.3.8"
:description "Clojure wrapper of MarkLogic XML Content Connector For Java (XCC/J)"
:url "https://github.com/daveliepmann/uruk"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[com.marklogic/marklogic-xcc "9.0.1"]
;; required but not included by MarkLogic (e.g. for ContentFactory):
[com.fasterxml.jackson.core/jackson-databind "2.6.3"]
[org.clojure/data.json "0.2.6"]
[org.clojure/data.xml "0.1.0-beta2"]
[slingshot "0.12.2"]]
:checksum :warn ;; TODO remove this workaround -- MarkLogic's Maven repo doesn't have checksums?
:repositories [["MarkLogic-releases" "http://developer.marklogic.com/maven2"]])