forked from brosenan/lucidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
111 lines (101 loc) · 5.17 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
(defproject im.chit/lucid "1.2.10"
:description "tools for code clarity"
:url "https://www.github.com/zcaudate/lucidity"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:aliases {"test" ["run" "-m" "hara.test" ":exit"]}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/core.match "0.2.2"]
[im.chit/hara.common.checks "2.4.8"]
[im.chit/hara.data.diff "2.4.8"]
[im.chit/hara.data.nested "2.4.8"]
[im.chit/hara.event "2.4.8"]
[im.chit/hara.io.archive "2.4.8"]
[im.chit/hara.io.classloader "2.4.8"]
[im.chit/hara.io.classpath "2.4.8"]
[im.chit/hara.io.encode "2.4.8"]
[im.chit/hara.io.file "2.4.8"]
[im.chit/hara.io.project "2.4.8"]
[im.chit/hara.namespace "2.4.8"]
[im.chit/hara.object "2.4.8"]
[im.chit/hara.reflect "2.4.8"]
[im.chit/hara.security "2.4.8"]
[im.chit/hara.string "2.4.8"]
[im.chit/hara.test "2.4.8"]
[org.eclipse.aether/aether-api "1.1.0"]
[org.eclipse.aether/aether-spi "1.1.0"]
[org.eclipse.aether/aether-util "1.1.0"]
[org.eclipse.aether/aether-impl "1.1.0"]
[org.eclipse.aether/aether-connector-basic "1.1.0"]
[org.eclipse.aether/aether-transport-wagon "1.1.0"]
[org.eclipse.aether/aether-transport-http "1.1.0"]
[org.eclipse.aether/aether-transport-file "1.1.0"]
[org.eclipse.aether/aether-transport-classpath "1.1.0"]
[org.apache.maven/maven-aether-provider "3.1.0"]
[org.ow2.asm/asm "5.1"]
[org.bouncycastle/bcprov-jdk15on "1.55"]
[org.bouncycastle/bcpg-jdk15on "1.55"]
[org.bouncycastle/bcpkix-jdk15on "1.55"]
[version-clj/version-clj "0.1.2"]
[rewrite-clj/rewrite-clj "0.5.2"]
[markdown-clj/markdown-clj "0.9.89"]
[hiccup/hiccup "1.0.5"]
[stencil/stencil "0.5.0"]]
:publish {:theme "stark"
:template {:site "lucid"
:author "Chris Zheng"
:email "[email protected]"
:icon "favicon"
:tracking-enabled "true"
:tracking "UA-31320512-2"}
:files {"index"
{:template "home.html"
:input "test/documentation/home_lucidity.clj"
:title "lucidity"
:subtitle "tools for code clarity"}
"lucid-aether"
{:input "test/documentation/lucid_aether.clj"
:title "aether"
:subtitle "wrapper for org.eclipse.aether"}
"lucid-core"
{:input "test/documentation/lucid_core.clj"
:title "core"
:subtitle "functions for the code environment"}
"lucid-distribute"
{:input "test/documentation/lucid_distribute.clj"
:title "distribute"
:subtitle "code repackaging and distribution"}
"lucid-mind"
{:input "test/documentation/lucid_mind.clj"
:title "mind"
:subtitle "contemplative reflection for the jvm"}
"lucid-package"
{:input "test/documentation/lucid_package.clj"
:title "package"
:subtitle "project packaging and dependencies"}
"lucid-publish"
{:input "test/documentation/lucid_publish.clj"
:title "publish"
:subtitle "generate documentation from code"}
"lucid-query"
{:input "test/documentation/lucid_query.clj"
:title "query"
:subtitle "intuitive search for code"}
"lucid-unit"
{:input "test/documentation/lucid_unit.clj"
:title "unit"
:subtitle "metadata through unit tests"}}}
:profiles {:dev {:dependencies [[compojure "1.4.0"]
[ring "1.4.0"]
[clj-http "2.1.0"]
[org.eclipse.jgit "4.0.1.201506240215-r"]]}}
:distribute {:jars :dependencies
:files [{:type :clojure
:levels 2
:path "src"
:standalone #{"aether" "distribute" "mind" "package" "publish" "query" "unit"}}
{:subpackage "resources"
:path "resources"
:distribute {"publish" #{"theme"}}}]}
:java-source-paths ["java"]
:jar-exclusions [#"^test\..+\.class"])