-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
71 lines (62 loc) · 2.55 KB
/
Copy pathproject.clj
File metadata and controls
71 lines (62 loc) · 2.55 KB
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
;; Copyright (c) 2015-2025 Michael Schaeffer (dba East Coast Toolworks)
;;
;; Licensed as below.
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; The license is also includes at the root of the project in the file
;; LICENSE.
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
;;
;; You must not remove this notice, or any other, from this software.
(defproject rhinowiki "0.3.20-SNAPSHOT"
:description "Rhinowiki Blog Engine"
:url "http://mschaef.com"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:plugins [[lein-ring "0.9.7"]
[lein-tar "3.3.0"]
[lein-ancient "1.0.0-RC3"]
[dev.weavejester/lein-cljfmt "0.13.0"]]
:dependencies [[org.clojure/clojure "1.12.1"]
[ring/ring-jetty-adapter "1.14.1"]
[ring/ring-devel "1.14.1"]
[ring/ring-codec "1.3.0"]
[co.deps/ring-etag-middleware "0.2.1"]
[slester/ring-browser-caching "0.1.1"]
[org.clojure/data.xml "0.0.8"]
[danlentz/clj-uuid "0.2.0"]
[compojure "1.7.1"]
[hiccup "1.0.5"]
[markdown-clj "1.12.3"]
[cprop "0.1.20"]
[org.eclipse.jgit/org.eclipse.jgit "4.9.0.201710071750-r"]
[org.graalvm.js/js "22.3.2" :upgrade :graalvm]
[com.mschaef/playbook "0.1.5"]]
:tar {:uberjar true
:format :tar-gz
:output-dir "."
:leading-path "rhinowiki-install"}
:main ^:skip-aot rhinowiki.main
:target-path "target/%s"
:profiles {:uberjar {:aot :all}}
:jvm-opts ["-Dconf=local-config.edn"]
:jar-name "rhinowiki.jar"
:uberjar-name "rhinowiki-standalone.jar"
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag" "--no-sign" ]
["tar"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]])