-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
80 lines (80 loc) · 2.26 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
(defproject clojang/agent "0.6.1"
:description "Clojang Node and REPL Start-up"
:url "https://github.com/clojang/agent"
:scm {
:name "git"
:url "https://github.com/clojang/agent"}
:license {
:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:dependencies [
[clojang/jiface "0.6.1-1"]
[clojusc/trifl "0.4.2"]
[clojusc/twig "0.4.1"]]
:manifest {"Agent-Class" "clojang.agent.core"
"Premain-Class" "clojang.agent.core"
"Can-Redefine-Classes" "true"}
:main clojang.agent.core
:aot [clojang.agent.core]
:codox {
:project {:name "clojang-agent"}
:themes [:clojang]
:output-path "docs/current"
:doc-paths ["resources/docs"]
:namespaces [#"^clojang\.(?!test)"]
:metadata {:doc/format :markdown}}
:profiles {
:lint {
:source-paths ^:replace ["src"]
:test-paths ^:replace []
:plugins [
[jonase/eastwood "0.3.5"]
[lein-ancient "0.6.15"]
[lein-bikeshed "0.5.2"]
[lein-kibit "0.1.6"]]}
:test {
:aot :all
:plugins [
[lein-ltest "0.3.0"]]
:source-paths ["test"]
:test-selectors {
:default :unit
:unit :unit
:system :system
:integration :integration}}
:dev {
:dependencies [
[org.clojure/tools.namespace "0.2.11"]]
:plugins [
[bansd/deploy-uberjar "0.1.2"]]
:source-paths ["dev-resources/src"]
:repl-options {:init-ns clojang.agent.dev}}
:docs {
:aot :all
:dependencies [
[clojang/codox-theme "0.2.0-SNAPSHOT"]]
:plugins [
[lein-codox "0.10.7"]
[lein-simpleton "1.3.0"]]}}
:aliases {
;; Dev Aliases
"repl" ["do"
["clean"]
["repl"]]
"compile" ["do"
["clean"]
["compile"]]
"check-vers" ["with-profile" "+lint" "ancient" "check" ":all"]
"check-jars" ["with-profile" "+lint" "do"
["deps" ":tree"]
["deps" ":plugin-tree"]]
"check-deps" ["do"
["check-jars"]
["check-vers"]]
"kibit" ["with-profile" "+lint" "kibit"]
"eastwood" ["with-profile" "+lint" "eastwood" "{:namespaces [:source-paths]}"]
"lint" ["do"
["kibit"]
;["eastwood"]
]
"ltest" ["with-profile" "+test" "ltest"]})