-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
20 lines (20 loc) · 1.17 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject jungerer "0.4.2-SNAPSHOT"
:description "Clojure network/graph library wrapping JUNG"
:url "https://github.com/totakke/jungerer"
:license {:name "The BSD 3-Clause License"
:url "https://opensource.org/licenses/BSD-3-Clause"}
:min-lein-version "2.7.0"
:dependencies [[org.clojure/clojure "1.8.0" :scope "provided"]
[net.sf.jung/jung-algorithms "2.1.1"]
[net.sf.jung/jung-api "2.1.1"]
[net.sf.jung/jung-graph-impl "2.1.1"]
[net.sf.jung/jung-io "2.1.1"]
[net.sf.jung/jung-visualization "2.1.1"]]
:profiles {:dev {:global-vars {*warn-on-reflection* true}}
:1.10 {:dependencies [[org.clojure/clojure "1.10.1"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}}
:deploy-repositories [["snapshots" {:url "https://clojars.org/repo/"
:username [:env/clojars_username :gpg]
:password [:env/clojars_password :gpg]}]]
:codox {:source-uri "https://github.com/totakke/jungerer/blob/{version}/{filepath}#L{line}"})