This repository has been archived by the owner on Jul 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
61 lines (52 loc) · 2.74 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
(defproject librarian/librarian "1.0.0-SNAPSHOT"
:description "A set of tools to programmatically work with software libraries."
:url "https://github.com/dice-group/ida"
:plugins [[lein-modules "0.3.11"]]
:middleware [lein-modules.plugin/middleware]
:dependencies [[org.clojure/clojure]
[cli-matic "0.3.6"]
[say-cheez "0.1.1"]
[librarian/helpers]
[librarian/model]
[librarian/scraper]
[librarian/generator]]
:modules {:versions {org.clojure/clojure "1.10.1"
org.clojure/tools.logging "0.4.1"
datascript "0.18.4"
clj-commons/fs "1.5.0"
org.flatland/ordered "1.5.7"
aysylu/loom "1.0.2"
librarian/helpers "1.0.0-SNAPSHOT"
librarian/model "1.0.0-SNAPSHOT"
librarian/scraper "1.0.0-SNAPSHOT"
librarian/generator "1.0.0-SNAPSHOT"}
:dirs ["."
"modules/helpers"
"modules/model"
"modules/scraper"
"modules/generator"]
:inherited {:pom-plugins [[com.theoryinpractise/clojure-maven-plugin "1.8.1"
[:extensions true
:configuration ([:sourceDirectories [:sourceDirectory "src"]]
[:testSourceDirectories [:testSourceDirectory "test"]])
:executions [:execution ([:goals [:goal "compile"]]
[:phase "compile"])]]]]}}
:main librarian.cli
:aliases {"prepare-repl" ["do" ["modules" "clean"]
["modules" "install"]
["modules" "clean"]
["modules" ":checkouts"]]}
:profiles {:dev {:source-paths ["dev" "src" "test"]
:dependencies [[org.clojure/tools.namespace "0.3.1"]
[proto-repl "0.3.1"]
[proto-repl-charts "0.3.2"]
[proto-repl-sayid "0.1.3"]
[com.gfredericks/debug-repl "0.0.10"]]
:eastwood {:exclude-linters []}
:repl-options {:init-ns user
:init (start)
:nrepl-middleware
[com.gfredericks.debug-repl/wrap-debug-repl]}}
:uberjar {:aot :all
:target-path "bin"
:uberjar-name "librarian.jar"}})