-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathproject.clj
22 lines (22 loc) · 1.04 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
(defproject metosin/ring-swagger-ui "5.18.2"
:description "Swagger UI for Ring apps"
:url "https://github.com/metosin/ring-swagger-ui"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
:deploy-repositories [["clojars" {:sign-releases false}]]
:resource {:resource-paths ["ext/swagger-ui/dist"
"resources/swagger-ui"]
:target-path "target/resources/swagger-ui"
:skip-stencil [ #".*" ]
:includes [#".*/favicon.*\.png"
#".*/swagger-ui\.css.*"
#".*/index\.css"
#".*/swagger-ui-.*\.js.*"
#".*/swagger-initializer\.js"
#".*/.*\.html"]
:excludes [#"ext/.*/swagger-initializer\.js"]}
:resource-paths ["target/resources" "resources-graalvm"]
:hooks [leiningen.resource]
:profiles {:dev {:plugins [[lein-resource "17.06.1"]]}})