-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
55 lines (48 loc) · 2.31 KB
/
project.clj
File metadata and controls
55 lines (48 loc) · 2.31 KB
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
(defproject com.beardandcode/twitter-news "0.1.0"
:description "A web app"
:url "https://github.com/beardandcode/twitter-news"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:min-lein-version "2.0.0"
:plugins [[lein-ancient "0.6.7"]
[jonase/eastwood "0.2.1"]
[lein-bikeshed "0.2.0"]
[lein-kibit "0.1.2"]
[lein-environ "1.0.0"]]
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/tools.logging "0.3.1"]
[ch.qos.logback/logback-classic "1.1.3"]
[environ "1.0.0"]
[com.beardandcode/components "0.1.2"]
[compojure "1.4.0"]
[ring/ring-anti-forgery "1.0.0"]
[selmer "0.9.5"]
[buddy/buddy-auth "0.8.2"]
[metrics-clojure "2.6.0"]
[metrics-clojure-ring "2.6.0"]
[org.apache.httpcomponents/httpclient "4.5.1"]
[com.twitter/hbc-core "2.2.0"]
[org.clojure/core.async "0.2.371"]
[throttler "1.0.0"]]
:source-paths ["src/clj"]
:test-paths ["test/clj"]
:resource-paths ["resources" "src"]
:uberjar-name "twitter-news.jar"
:aliases {"scss" ["run" "-m" "com.beardandcode.tools/scss-main"]}
:profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.10"]
[reloaded.repl "0.1.0"]
[clj-webdriver "0.7.2"]
[com.codeborne/phantomjsdriver "1.2.1"
:exclusion [org.seleniumhq.selenium/selenium-java
org.seleniumhq.selenium/selenium-server
org.seleniumhq.selenium/selenium-remote-driver]]
[org.seleniumhq.selenium/selenium-java "2.48.2"]
[clj-http "2.0.0"]]
:source-paths ["dev"]
:env {:ip-address "127.0.0.1"
:port 8080}}
:test {:env {:ip-address "127.0.0.1"
:port 0}}
:uberjar {:prep-tasks ["scss" "javac" "compile"]
:main com.beardandcode.twitter-news
:aot :all}})