forked from loafle/openapi-generator-original
Co-authored-by: Akihito Nakano <sora.akatsuki@gmail.com> Co-authored-by: Jeremie Bresson <dev@jmini.fr> Co-authored-by: Jim Schubert <james.schubert@gmail.com> Co-authored-by: Martin Delille <martin@phonations.com> Co-authored-by: Tomasz Prus <tomasz.prus@gmail.com> Co-authored-by: William Cheng <wing328hk@gmail.com>
8 lines
533 B
Clojure
8 lines
533 B
Clojure
(defproject swagger-petstore "1.0.0"
|
|
:description "This is a sample server Petstore server. You can find out more about Swagger at <a href=\"http://swagger.io\">http://swagger.io</a> or on irc.freenode.net, #swagger. For this sample, you can use the api key \"special-key\" to test the authorization filters"
|
|
:license {:name "Apache-2.0"
|
|
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
|
|
:dependencies [[org.clojure/clojure "1.7.0"]
|
|
[clj-http "3.6.0"]
|
|
[cheshire "5.5.0"]])
|