-
Notifications
You must be signed in to change notification settings - Fork 6
/
project.clj
20 lines (20 loc) · 1.12 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject uruk "0.3.13-SNAPSHOT"
: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.10.0"]
[com.marklogic/marklogic-xcc "9.0.9"]
;; required but not included by MarkLogic (e.g. for ContentFactory):
[com.fasterxml.jackson.core/jackson-databind "2.9.9"]
[org.clojure/data.json "0.2.6"]
[org.clojure/data.xml "0.1.0-beta2"]
[slingshot "0.12.2"]]
:profiles {:codox {:dependencies [[codox-theme-rdash "0.1.2"]]
:plugins [[lein-codox "0.10.3"]]
:codox {:metadata {:doc/format :markdown} ;; docstring format
:output-path "gh-pages"
:themes [:rdash]}}}
:repositories [["MarkLogic-releases" "http://developer.marklogic.com/maven2"]]
:jar-exclusions [#"examples", #".jpg"]
:uberjar-exclusions [#"examples", #".jpg"])