-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproject.clj
More file actions
19 lines (19 loc) · 888 Bytes
/
project.clj
File metadata and controls
19 lines (19 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject webdriver-logic "0.0.2"
:description "Library of goals (relational functions) that can be used with core.logic to expose web pages as application domains for logic programs."
:url "https://github.com/semperos/webdriver-logic"
: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.4.0"]
[org.clojure/core.logic "0.8.0-beta2"]
[clj-webdriver "0.6.0-beta2"]
;; [enlive "1.0.1"]
[org.clojars.semperos/enlive "1.0.1"]
]
:profiles {:dev
{:dependencies
[[criterium "0.2.1"]
[ring "1.1.1"]
[enlive "1.0.1"]
[net.cgrand/moustache "1.1.0"]]}}
:scm {:url "git@github.com:semperos/webdriver-logic.git"})