forked from michaelklishin/neocons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
51 lines (51 loc) · 2.96 KB
/
project.clj
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
47
48
49
50
51
(defproject clojurewerkz/neocons "3.1.0-beta3-SNAPSHOT"
:description "Neocons is a feature rich idiomatic Clojure client for the Neo4J REST API"
:url "http://clojureneo4j.info"
:license {:name "Eclipse Public License"}
:min-lein-version "2.5.0"
:dependencies [[org.clojure/clojure "1.6.0"]
[cheshire "5.3.1"]
[clj-http "0.9.1"]
[clojurewerkz/support "1.1.0"]
[clojurewerkz/urly "2.0.0-alpha5"]]
:test-selectors {:default (fn [m] (and (not (:time-consuming m))
(not (:http-auth m))
(not (:edge-features m))
(not (:spatial m))))
:time-consuming :time-consuming
:focus :focus
:indexing :indexing
:cypher :cypher
:http-auth :http-auth
:spatial :spatial
;; as in, bleeding edge Neo4J Server
:edge-features :edge-features
;; assorted examples (extra integration tests)
:examples :examples
:batching :batching
:traversal :traversal
:uri-encoding (fn [m] (or (:examples m)
(:indexing m)))
:all (constantly true)}
:source-paths ["src/clojure"]
:profiles {:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:master {:dependencies [[org.clojure/clojure "1.7.0-master-SNAPSHOT"]]}
:dev {:plugins [[codox "0.8.10"]]
:codox {:sources ["src/clojure"]
:output-dir "doc/api"}}
;; this version of clj-http depends on HTTPCore 4.2.x which
;; some projects (e.g. using Spring's RestTemplate) can rely on,
;; so we test for compatibility with it. MK.
:cljhttp076 {:dependencies [[clj-http "0.7.6"]]}}
:codox {:src-dir-uri "https://github.com/michaelklishin/neocons/blob/master/"
:src-linenum-anchor-prefix "L"}
:aliases {"all" ["with-profile" "dev:dev,1.4:dev,1.5:dev,master:dev,cljhttp076:dev,1.5,cljhttp076"]}
:repositories {"sonatype" {:url "http://oss.sonatype.org/content/repositories/releases"
:snapshots false
:releases {:checksum :fail :update :always}}
"sonatype-snapshots" {:url "http://oss.sonatype.org/content/repositories/snapshots"
:snapshots true
:releases {:checksum :fail :update :always}}}
:java-source-paths ["src/java"]
:global-vars {*warn-on-reflection* true})