-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
78 lines (69 loc) · 3.04 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
(defproject libby "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:dependencies [;; from luminus
[bouncer "1.0.0"]
[compojure "1.5.1"]
[cprop "0.1.9"]
[luminus-immutant "0.2.2"]
[luminus-nrepl "0.1.4"]
[markdown-clj "0.9.91"]
[metosin/ring-http-response "0.8.0"]
[mount "0.1.11"]
[org.clojure/clojure "1.8.0"]
[org.clojure/tools.cli "0.3.5"]
[org.clojure/tools.logging "0.3.1"]
[org.webjars.bower/tether "1.3.7"]
[org.webjars/bootstrap "4.0.0-alpha.5"]
[org.webjars/font-awesome "4.7.0"]
[org.webjars/jquery "3.1.1"]
[org.webjars/webjars-locator-jboss-vfs "0.1.0"]
[ring-middleware-format "0.7.0"]
[ring-webjars "0.1.1"]
[ring/ring-defaults "0.2.1"]
[clj-http "2.3.0"]
[org.clojure/core.memoize "0.5.8"]
;; things we added
[org.clojure/java.jdbc "0.7.0-alpha1"]
[mysql/mysql-connector-java "6.0.5"]
[selmer "1.10.3"]
;; for solr
[com.codesignals/flux "0.7.0-SNAPSHOT"]
; [com.codesignals/flux "0.7.0-SNAPSHOT" :exclusions [[log4j] [org.slf4j/slf4j-log4j12]]]
; [ch.qos.logback/logback-classic "1.0.13"]
; [commons-logging "1.1.3"]
[org.clojure/tools.namespace "0.2.4"]
[org.clojure/tools.logging "0.3.1"]
]
:min-lein-version "2.0.0"
:jvm-opts ["-server" "-Dconf=.lein-env"]
:source-paths ["src/clj"]
:resource-paths ["resources"]
:target-path "target/%s/"
:main libby.core
:plugins [[lein-cprop "1.0.1"]
[lein-immutant "2.1.0"]
[cider/cider-nrepl "0.15.0-SNAPSHOT"]
[refactor-nrepl "2.3.0-SNAPSHOT"]
]
:profiles
{:uberjar {:omit-source true
:aot :all
:uberjar-name "libby.jar"
:source-paths ["env/prod/clj"]
:resource-paths ["env/prod/resources"]}
:dev [:project/dev :profiles/dev]
:test [:project/dev :project/test :profiles/test]
:project/dev {:dependencies [[prone "1.1.4"]
[ring/ring-mock "0.3.0"]
[ring/ring-devel "1.5.0"]
[pjstadig/humane-test-output "0.8.1"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.18.1"]]
:source-paths ["env/dev/clj" "test/clj"]
:resource-paths ["env/dev/resources"]
:repl-options {:init-ns user}
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}
:project/test {:resource-paths ["env/test/resources"]}
:profiles/dev {}
:profiles/test {}})