This repository has been archived by the owner on Mar 8, 2023. It is now read-only.
forked from alancan/gridfire
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
61 lines (50 loc) · 2.25 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
52
53
54
55
56
57
58
59
60
61
(defproject sig-gis/gridfire "1.5.0"
:description "SIG's Raster-based Fire Behavior Model"
:dependencies [[org.clojure/clojure "1.9.0-alpha12"]
[org.clojure/data.csv "0.1.4"]
[org.clojure/java.jdbc "0.7.6"]
[org.postgresql/postgresql "42.2.2.jre7"]
[net.mikera/core.matrix "0.62.0"]
[net.mikera/vectorz-clj "0.47.0"]
;; [sig-gis/magellan "0.1.0"]
[org.geotools/gt-shapefile "21.2"]
[org.geotools/gt-swing "21.2"]
[org.geotools/gt-epsg-hsql "21.2"]
[org.geotools/gt-geotiff "21.2"]
[org.geotools/gt-image "21.2"]
[org.geotools/gt-wms "21.2"]
[org.geotools/gt-coverage "21.2"]
[prismatic/schema "1.0.4"]
;;
[me.raynes/fs "1.4.6"]
[me.raynes/conch "0.8.0"]
[com.taoensso/tufte "2.0.1"]
[com.taoensso/timbre "4.10.0"]
;;
[org.clojars.lambdatronic/matrix-viz "0.1.7"]]
:source-paths ["src"]
:profiles
{:dev
{:plugins
[
[cider/cider-nrepl "0.22.0-beta1"]
]
:source-paths ["dev"]
:repl-options
{:init-ns user
:timeout 30000 ;; default
}
}}
:repositories [["java.net" "http://download.java.net/maven/2"]
["osgeo.org" "http://download.osgeo.org/webdav/geotools/"]]
:manifest {"Specification-Title" "Java Advanced Imaging Image I/O Tools"
"Specification-Version" "1.1"
"Specification-Vendor" "Sun Microsystems, Inc."
"Implementation-Title" "com.sun.media.imageio"
"Implementation-Version" "1.1"
"Implementation-Vendor" "Sun Microsystems, Inc."}
:min-lein-version "2.8.1"
:aot [gridfire.cli]
:main gridfire.cli
:repl-options {:init-ns gridfire.cli}
:global-vars {*warn-on-reflection* true})