forked from semperos/clj-webdriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
30 lines (30 loc) · 1.42 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
(defproject clj-webdriver "0.7.0-SNAPSHOT"
:description "Clojure API for Selenium-WebDriver"
:url "https://github.com/semperos/clj-webdriver"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/core.cache "0.5.0"]
[org.clojure/tools.logging "0.2.3"]
;; Exclude these, giving preference to Selenium-WebDriver's
;; dependence on them.
[clj-http "0.3.0" :exclusions [org.apache.httpcomponents/httpclient
org.apache.httpcomponents/httpcore
org.apache.httpcomponents/httpmime]]
[cheshire "2.1.0"]
[org.mortbay.jetty/jetty "6.1.25"]
[org.seleniumhq.selenium/selenium-server "2.31.0"]]
:profiles {:dev
{:dependencies
[[criterium "0.2.0"]
[codox "0.3.3"]
[clj-time "0.4.4"]
[marginalia "0.3.2"]
[ring "1.0.2"]
[ring-http-basic-auth "0.0.2"]
[enlive "1.0.0"]
[net.cgrand/moustache "1.0.0"]]}}
:aot [#"clj-webdriver\.ext\.*"]
:scm {:url "git@github.com:semperos/clj-webdriver.git"}
:pom-addition [:developers [:developer [:name "Daniel Gregoire"]]])