This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
ring-custom-jetty-server/project.clj

12 lines
503 B
Clojure
Raw Normal View History

2013-11-03 01:18:12 -05:00
(defproject ring-server "0.3.1"
2012-02-07 17:35:55 -05:00
:description "Library for running Ring web servers"
2013-02-23 09:09:40 -05:00
:url "https://github.com/weavejester/ring-server"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
2012-02-07 17:35:55 -05:00
:dependencies [[org.clojure/clojure "1.2.1"]
2012-02-10 18:01:26 -05:00
[org.clojure/core.incubator "0.1.0"]
2013-11-03 01:12:55 -05:00
[ring "1.2.1"]
2013-01-20 11:23:06 -05:00
[ring-refresh "0.1.2"]]
2013-11-03 01:13:11 -05:00
:plugins [[codox "0.6.6"]]
:profiles {:dev {:dependencies [[clj-http "0.4.1"]]}})