-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
80 lines (64 loc) · 1.87 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
(def MIN_JAVA_VERSION "16")
(defproject com.github.igrishaev/_ "0.1.1-SNAPSHOT"
:pom-addition
[:properties
["maven.compiler.source" ~MIN_JAVA_VERSION]
["maven.compiler.target" ~MIN_JAVA_VERSION]]
:javac-options ["-Xlint:unchecked"
"-Xlint:preview"
"--release" ~MIN_JAVA_VERSION]
:url
"https://github.com/igrishaev/deed"
:license
{:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:deploy-repositories
{"releases"
{:url "https://repo.clojars.org"
:creds :gpg}
"snapshots"
{:url "https://repo.clojars.org"
:creds :gpg}}
:release-tasks
[["vcs" "assert-committed"]
["sub" "change" "version" "leiningen.release/bump-version" "release"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag" "--no-sign"]
["sub" "with-profile" "uberjar" "install"]
["sub" "with-profile" "uberjar" "deploy"]
["sub" "change" "version" "leiningen.release/bump-version"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]]
:plugins
[[lein-sub "0.3.0"]
[exoscale/lein-replace "0.1.1"]]
:dependencies
[]
:managed-dependencies
[[com.github.igrishaev/deed-core :version]
[com.github.igrishaev/deed-base64 :version]
[com.github.igrishaev/deed-vectorz :version]
[org.clojure/clojure "1.9.0"]
;; base64
[commons-codec/commons-codec "1.17.1"]
;; vectorz
[net.mikera/vectorz "0.67.0"]
;; bench
[criterium "0.4.6"]
[com.taoensso/nippy "3.4.2"]
[com.alpha-prosoft/jsonista "0.3.8.11"]]
:sub
["deed-core"
"deed-base64"
"deed-vectorz"]
:profiles
{:dev
{:source-paths ["dev"]
:dependencies [[org.clojure/clojure]]
:global-vars
{*warn-on-reflection* true
*assert* true}}
:test
{:source-paths ["test"]}})