-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
87 lines (69 loc) · 2 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
(defproject re-cog "0.6.7"
:description "Re-cog is a set of serializable functions including provisioning resources, system facts and commonly used remotely executable functions"
:url "https://github.com/re-ops/re-cog"
:license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"}
:dependencies [
[org.clojure/clojure "1.10.1"]
[org.clojure/core.incubator "0.1.4"]
; serialization
[serializable-fn "1.1.4"]
[cheshire "5.10.0"]
; fs utilities
[me.raynes/fs "1.4.6"]
; checksumming
[digest "1.4.10"]
; templating
[cljstache "2.0.6"]
; logging
[com.taoensso/timbre "5.1.0"]
[timbre-ns-pattern-level "0.1.2"]
[com.fzakaria/slf4j-timbre "0.3.20"]
; common utilities and shared functions
[re-share "0.18.0"]
[re-scan "0.2.1"]
; clojure to bash
[com.palletops/stevedore "0.8.0-beta.7"]
; repl
[org.clojure/tools.namespace "1.1.0"]
; planning
[aysylu/loom "1.0.2" :exclusions [org.clojure/clojurescript]]
; CLI
[cli-matic "0.3.11"]
[progrock "0.1.2"]
; in memory datalog
[datascript "1.0.2"]
[camel-snake-kebab "0.4.2"]
; configuration
[aero "1.1.6"]
; yaml resources
[narkisr/clj-yaml "0.7.2"]
]
:plugins [
[lein-tag "0.1.0"]
[lein-ancient "0.6.15" :exclusions [org.clojure/clojure]]
[lein-set-version "0.3.0"]
[lein-cljfmt "0.5.6"]]
:aliases {
"travis" [
"do" "clean," "compile," "cljfmt" "check"
]
"docs" [
"with-profile" "codox" "do" "codox"
]
}
:repl-options {
:init-ns user
:prompt (fn [ns] (str "\u001B[35m[\u001B[34m" "re-cog" "\u001B[35m]\u001B[33mλ:\u001B[m " ))
:welcome (println "Welcome to re-cog!" )
}
:source-paths ["src" "dev"]
:profiles {
:dev {
:source-paths ["dev"]
:set-version {
:updates [
{:path "README.md" :search-regex #"\d+\.\d+\.\d+"}
]}
}
}
)