-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
58 lines (58 loc) · 1.88 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
(defproject clojang/blog "0.1.0-SNAPSHOT"
:description "The Clojang Blog"
:url "https://clojang.lfe.io/"
:scm {
:name "git"
:url "https://github.com/clojang/blog"}
:license {
:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:dependencies [
[org.clojure/data.xml "0.0.8"]
[clojusc/env-ini "0.3.0-SNAPSHOT"]
[clojusc/rfc5322 "0.3.0-SNAPSHOT"]
[clojusc/trifl "0.1.0-SNAPSHOT"]
[clojusc/twig "0.3.1-SNAPSHOT"]
[ring/ring-core "1.6.0-RC1"]
[dragon "0.1.0-SNAPSHOT"]
[markdown-clj "0.9.97"]
[me.raynes/cegdown "0.1.1"]
[org.clojure/clojure "1.8.0"]
[selmer "1.10.6"]
[stasis "2.3.0"]
[tentacles "0.5.1"]]
:source-paths ["src/clj"]
:dragon {
:domain "clojang.lfe.io"
:name "The Clojang Blog"
:description "News, Information, & Tutorials for the Clojang Library Collection"
:dev-port 5097
:output-dir "docs"
:posts-path "/archives"
:feed-count 20
:cli {
:log-level :info
:log-ns [clojang.blog dragon]}}
:profiles {
:uberjar {:aot :all}
:dev {
:source-paths ["dev-resources/src"]
:main clojang.blog.main
:aliases {"blog" ^{:doc (str "The Clojang blog CLI; "
"type `lein blog help` for commands\n")}
["run" "-m" "clojang.blog.main" "cli"]}
:repl-options {
:init-ns clojang.blog.dev}
:plugins [
[lein-simpleton "1.3.0"]]
:dependencies [
[http-kit "2.2.0"]
[leiningen-core "2.7.1"]
[org.clojure/tools.namespace "0.2.11"]]}
:test {
:plugins [
[lein-ancient "0.6.10"]
[jonase/eastwood "0.2.3" :exclusions [org.clojure/clojure]]
[lein-bikeshed "0.4.1" :exclusions [org.clojure/tools.namespace]]
[lein-kibit "0.1.4" :exclusions [org.clojure/clojure]]
[venantius/yagni "0.1.4"]]}})