forked from michaelklishin/neocons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
33 lines (33 loc) · 1.83 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
(defproject clojurewerkz/neocons "1.0.0-SNAPSHOT"
:description "Neocons is a young idiomatic Clojure client for the Neo4J REST API"
:license {:name "Eclipse Public License"}
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.3.0"]
[org.clojure/data.json "0.1.2"]
[clj-http "0.4.2" :exclude [cheshire]]
[clojurewerkz/support "0.4.0"]]
:test-selectors {:default (fn [m] (and (not (:time-consuming m))
(not (:http-auth m))
(not (:edge-features m))))
:time-consuming :time-consuming
:focus :focus
:indexing :indexing
:cypher :cypher
:http-auth :http-auth
;; as in, bleeding edge Neo4J Server
:edge-features :edge-features
;; assorted examples (extra integration tests)
:examples :examples
: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.0-master-SNAPSHOT"]]}}
:aliases {"all" ["with-profile" "dev:dev,1.4:dev,1.5"]}
: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"]
:warn-on-reflection true)