-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
59 lines (48 loc) · 1.79 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
(defproject com.nytimes/querqy-clj "0.8.3-SNAPSHOT"
:description "Querqy in Clojure"
:url "https://github.com/nytimes/querqy-clj"
:license {:name "Apache License",
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:repositories
[["releases" {:url "https://clojars.org/repo"
:sign-releases false
:username [:env/clojars_username]
:password [:env/clojars_password]}]
["snapshots" {:url "https://clojars.org/repo"
:sign-releases false
:username [:env/clojars_username]
:password [:env/clojars_password]}]]
:plugins
[[com.github.clj-kondo/lein-clj-kondo "2023.10.20"]
[dev.weavejester/lein-cljfmt "0.11.2"]]
:dependencies
[[org.clojure/clojure "1.11.1"]
[org.querqy/querqy-core "3.16.0"]]
:repl-options {:init-ns com.nytimes.querqy}
:global-vars {*warn-on-reflection* true}
:test-selectors
{:default (complement :integration)
:unit (complement :integration)
:integration :integration}
:profiles
{:dev
{:source-paths ["dev"]
:jvm-opts ["-Dorg.slf4j.simpleLogger.defaultLogLevel=debug"]
:dependencies
[[criterium "0.4.6"]
[lambdaisland/kaocha "1.66.1034"]
[metosin/testit "0.4.1"]
[nubank/matcher-combinators "3.9.1"]
[org.clojure/test.check "1.1.1"]
[org.slf4j/slf4j-api "1.7.36"]
[org.slf4j/slf4j-simple "1.7.36"]]}}
:aliases {"kaocha" ["run" "-m" "kaocha.runner"]}
:cljfmt {:load-config-file? true}
:release-tasks
[["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag" "--no-sign"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]])