-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
153 lines (136 loc) · 7.38 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
(defproject ch.sbs/daisyproducer2 "0.9.28-SNAPSHOT"
:description "FIXME: write description"
:url "https://github.com/sbsdev/daisyproducer2"
:dependencies [[babashka/fs "0.5.22"]
[babashka/process "0.5.22"]
[buddy/buddy-auth "3.0.323"]
[buddy/buddy-core "1.11.423" :exclusions [commons-codec]]
[buddy/buddy-hashers "2.0.167"]
[buddy/buddy-sign "3.5.351"]
[ch.qos.logback/logback-classic "1.4.14"]
[camel-snake-kebab "0.4.3"]
[cheshire "5.13.0"]
[clj-commons/iapetos "0.1.13" :exclusions [io.prometheus/simpleclient javax.xml.bind/jaxb-api]]
[clj-http "3.13.0"] ;; to talk to the DAISY Pipeline2
[cljs-ajax "0.8.4"]
[clojure.java-time "1.4.2"] ;; to create a timestamp when talking to pipeline2
[com.andrewmcveigh/cljs-time "0.5.2"]
[com.cognitect/transit-clj "1.0.333"]
[com.cognitect/transit-cljs "0.8.280"]
[com.github.f4b6a3/uuid-creator "5.3.7"] ;; for UUIDv7
[com.github.f4b6a3/tsid-creator "5.2.6"] ;; for generating Time-Sorted Unique Identifiers (TSID)
[com.google.javascript/closure-compiler-unshaded "v20230411"]
;; [com.fasterxml.jackson.core/jackson-core "2.12.5"]
;; [com.fasterxml.jackson.core/jackson-databind "2.12.5"]
[com.google.protobuf/protobuf-java "3.23.3"]
[com.thaiopensource/jing "20091111" :exclusions [xml-apis]] ;; for schema validation
[com.taoensso/tempura "1.5.3"]
[conman "0.9.6"]
[cprop "0.1.20"]
[crypto-random "1.2.1"] ; for pipeline2 client
[day8.re-frame/http-fx "0.2.4"]
[expound "0.9.0"]
[failjure "2.3.0"] ;; for working with failed computations
[funcool/struct "1.4.0"]
[fork "2.4.3"] ;; Form Library for re-frame
[io.prometheus/simpleclient_hotspot "0.16.0"]
[jarohen/chime "0.3.3"]
[luminus-undertow "0.1.18"]
[luminus/ring-ttl-session "0.3.3"]
[luminus-migrations "0.7.5"]
[luminus-transit "0.1.6"]
[markdown-clj "1.12.1"]
[dev.weavejester/medley "1.8.1"]
[me.flowthing/sigel "1.0.3"]
[metosin/jsonista "0.3.8"]
[metosin/muuntaja "0.6.10"]
[metosin/reitit "0.6.0"]
[metosin/ring-http-response "0.9.3"]
[mount "0.1.18"]
[mysql/mysql-connector-java "8.0.33"]
[nrepl "1.1.2"]
[org.apache.pdfbox/pdfbox "3.0.3"] ;; to calculate the number of pages in a pdf
[org.clojars.pntblnk/clj-ldap "0.0.17"]
[org.clojure/clojure "1.11.3"]
[org.clojure/clojurescript "1.11.60" :scope "provided"]
[org.clojure/core.async "1.6.681"]
[org.clojure/data.codec "0.2.0"] ; to talk to the DAISY Pipeline2
[org.clojure/data.zip "1.1.0"] ; to talk to the DAISY Pipeline2
[org.clojure/tools.cli "1.1.230"]
[org.clojure/tools.logging "1.3.0"]
[org.daisy.bindings/jhyphen "1.0.2" :exclusions [net.java.dev.jna/jna]]
[org.liblouis/liblouis-java "5.1.0" :exclusions [net.java.dev.jna/jna]]
[org.tobereplaced/nio.file "0.4.0"]
[org.webjars.npm/bulma "0.9.4"]
[org.webjars.npm/creativebulma__bulma-tooltip "1.2.0"]
[org.webjars.npm/material-icons "1.13.2"]
[org.webjars/webjars-locator "0.52" :exclusions [org.slf4j/slf4j-api]]
[org.webjars/webjars-locator-jboss-vfs "0.1.0"]
[pandect "1.0.2"] ;; to talk to the DAISY Pipeline2
[re-frame "1.4.3"]
[reagent "1.2.0"]
[ring-webjars "0.2.0"]
[ring/ring-core "1.12.1"]
[ring/ring-defaults "0.5.0"]
[selmer "1.12.61"]
[ch.sbs/dtbook-update-metadata "0.12"]
[thheller/shadow-cljs "2.25.7" :scope "provided"]
[trptcolin/versioneer "0.2.0"]]
:min-lein-version "2.0.0"
:source-paths ["src/clj" "src/cljs" "src/cljc"]
:test-paths ["test/clj"]
:resource-paths ["resources" "target/cljsbuild"]
:target-path "target/%s/"
:main ^:skip-aot daisyproducer2.core
:plugins [[com.github.clj-kondo/lein-clj-kondo "0.2.5"]]
:release-tasks [["vcs" "assert-committed"]
["change" "version"
"leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag"]
#_["deploy"]
#_["uberjar"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]]
:clean-targets ^{:protect false}
[:target-path "target/cljsbuild"]
:test-selectors {:non-database (complement :database)}
:profiles
{:uberjar {:omit-source true
:prep-tasks ["compile" ["run" "-m" "shadow.cljs.devtools.cli" "release" "app"]]
:aot :all
:uberjar-name "daisyproducer2-%s-standalone.jar"
:source-paths ["env/prod/clj" "env/prod/cljs" ]
:resource-paths ["env/prod/resources"]}
:dev [:project/dev :profiles/dev]
:test [:project/dev :project/test :profiles/test]
:project/dev {:jvm-opts ["-Dconf=dev-config.edn" ]
:dependencies [[binaryage/devtools "1.0.7"]
[cider/piggieback "0.5.3"]
[org.clojure/tools.namespace "1.5.0" :exclusions [org.clojure/tools.reader]]
[org.clojure/test.check "1.1.1"]
[com.gfredericks/test.chuck "0.2.14"]
[pjstadig/humane-test-output "0.11.0"]
[prone "2021-04-23"]
[re-frisk "1.6.0"]
[ring/ring-devel "1.12.1"]
[ring/ring-mock "0.4.0"]
[io.github.noahtheduke/splint "1.15.2"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.25.0"]
[jonase/eastwood "1.4.2"]
[cider/cider-nrepl "0.52.0"]]
:source-paths ["env/dev/clj" "env/dev/cljs" "test/cljs" ]
:resource-paths ["env/dev/resources"]
:repl-options {:init-ns user
:timeout 120000}
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}
:project/test {:jvm-opts ["-Dconf=test-config.edn" ]
:dependencies [[org.clojure/test.check "1.1.1"]
[com.gfredericks/test.chuck "0.2.14"]]
:resource-paths ["env/test/resources"]
}
:profiles/dev {}
:profiles/test {}}
:aliases {"splint" ["run" "-m" "noahtheduke.splint"]})