-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
23 lines (23 loc) · 991 Bytes
/
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
(defproject clojars-rss "2021.01.28"
:description "Unofficially generated RSS feed for libraries recently registered on Clojars"
:url "https://github.com/athos/clojars-rss"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.11.1"]
[cheshire "5.10.2"]
[org.martinklepsch/clj-http-lite "0.4.3"]
[pogonos "0.2.0"]]
:main clojars-rss.main
:repl-options {:init-ns clojars-rss.main}
:profiles {:uberjar {:aot :all}
:dev {:plugins [[lein-shell "0.5.0"]]}}
:aliases
{"native"
["shell"
"native-image" "--report-unsupported-elements-at-runtime"
"--initialize-at-build-time" "--no-server"
"-H:Name=./${:name}"
"-H:EnableURLProtocols=https"
"-H:IncludeResources=feed_template.mustache"
"-J-Dclojure.spec.skip-macros=true"
"-J-Dclojure.compiler.direct-linking=true"]})