-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
68 lines (59 loc) · 2.55 KB
/
Copy pathproject.clj
File metadata and controls
68 lines (59 loc) · 2.55 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
56
57
58
59
60
61
62
63
64
65
66
67
68
(defproject ogbot "3.1.0-SNAPSHOT"
:description "Kovan's OGBot - Automated OGame bot translated to Clojure"
:url "https://github.com/kovans-ogbot"
:license {:name "GNU GPL v2"
:url "https://www.gnu.org/licenses/gpl-2.0.html"}
:dependencies [[org.clojure/clojure "1.11.1"]
;; ClojureScript
[org.clojure/clojurescript "1.11.132"]
[reagent "1.2.0" :exclusions [cljsjs/react cljsjs/react-dom]]
[cljsjs/react "18.2.0-1"]
[cljsjs/react-dom "18.2.0-1"]
;; HTTP client
[clj-http "3.12.3"]
;; HTML parsing
[enlive "1.1.6"]
[hickory "0.7.1"]
;; Database
[org.xerial/sqlite-jdbc "3.44.1.0"]
[org.clojure/java.jdbc "0.7.12"]
[honeysql "1.0.461"]
;; Async/concurrency
[org.clojure/core.async "1.6.681"]
;; Configuration
[aero "1.1.6"]
;; Logging
[org.clojure/tools.logging "1.2.4"]
[ch.qos.logback/logback-classic "1.2.12"]
;; Web UI
[ring/ring-core "1.10.0"]
[ring/ring-jetty-adapter "1.10.0"]
[compojure "1.7.0"]
[hiccup "1.0.5"]
[cheshire "5.11.0"]
[http-kit "2.6.0"]
;; Utilities
[clj-time "0.15.2"]
[com.taoensso/timbre "6.3.1"]
;; Selenium automation
[etaoin "1.0.40"]
;; Desktop GUI (JavaFX)
[cljfx/cljfx "1.10.6"]]
:plugins [[lein-cljsbuild "1.1.8"]]
:main ^:skip-aot ogbot.core
:target-path "target/%s"
:source-paths ["src/clj"]
:resource-paths ["resources" "languages"]
:cljsbuild {:builds [{:id "prod"
:source-paths ["src/cljs"]
:compiler {:output-to "resources/public/js/main.js"
:output-dir "target/cljs-prod"
:optimizations :advanced
:pretty-print false}}]}
:profiles {:uberjar {:aot :all
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}
:dev {:dependencies [[org.clojure/tools.namespace "1.4.4"]]}}
:jvm-opts ["-Xmx512m"]
:aliases {"start" ["do" "cljsbuild" "once" "prod," "run"]
"check" ["do" "clean," "compile"]
"cljs" ["cljsbuild" "once" "prod"]})