-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
45 lines (37 loc) · 1.83 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
(defproject garden-gnome "0.1.1-SNAPSHOT"
:description "Provides support for watching Garden styles in reloaded workflow"
:url "https://github.com/Otann/garden-gnome"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/java.classpath "0.2.3"]
[garden "1.3.2"]
[hawk "0.2.11"]]
:main ^:skip-aot garden-mount.main
:profiles {:uberjar {:aot :all}
:dev {:source-paths ["dev" "src"]
:dependencies [[mount "0.1.11"]
[com.stuartsierra/component "0.3.2"]
[org.clojure/tools.nrepl "0.2.13"]
[org.clojure/tools.namespace "0.2.11"]]}}
:repl-options {:init-ns user}
:garden {:builds [{:source-path "dev/sample"
:stylesheet sample.styles/screen
:compiler {:output-to "resources/public/screen.css"
:pretty-print? true}}]}
;; Artifact deployment info
:scm {:name "git"
:url "https://github.com/otann/morse"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag"]
["deploy" "clojars"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]]
:pom-addition [:developers [:developer
[:name "Anton Chebotaev"]
[:url "http://otann.com"]
[:email "[email protected]"]
[:timezone "+1"]]])