-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
27 lines (26 loc) · 957 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
24
25
26
27
(defproject page-renderer "0.4.8"
:description
"A holistic approach for rendering a modern HTML web app frame.
Has bindings for common page meta, PWA, and social meta tags."
:url "https://github.com/spacegangster/page-renderer"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.11.2"]]
:signing {:gpg-key "[email protected]"}
:main page-renderer.api
:java-source-paths ["src"]
:javac-options ["-source" "8" "-target" "8"
"-XDignore.symbol.file"
"-Xlint:all,-options,-path"
"-Werror"
"-proc:none"]
:deploy-repositories [["releases" :clojars]]
:profiles
{:provided {:dependencies
[[org.clojure/clojure "1.11.2"]
[garden "1.3.9"]
[hiccup "1.0.5"]]}
:debug-resources
{:source-paths ["src" "dev"]
:aot :all
:main user}})