-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbuild.boot
More file actions
19 lines (16 loc) · 775 Bytes
/
build.boot
File metadata and controls
19 lines (16 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(set-env!
:resource-paths #{"src"}
:dependencies '[[org.clojure/clojure "1.6.0" :scope "provided"]
[adzerk/bootlaces "0.1.10" :scope "test"]
[ring/ring-core "1.4.0-RC1"]
[ring/ring-jetty-adapter "1.4.0-RC1"]
[clj-http "1.1.2"] ])
(require '[adzerk.bootlaces :refer :all])
(def +version+ "3.0.0-SNAPSHOT")
(bootlaces! +version+)
(task-options!
pom {:project 'tailrecursion/ring-proxy
:version +version+
:description "HTTP proxy ring middleware for Clojure web applications."
:scm {:url "https://github.com/tailrecursion/ring-proxy"}
:license {"EPL" "http://www.eclipse.org/legal/epl-v10.html"} })