-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
17 lines (17 loc) · 794 Bytes
/
Copy pathproject.clj
File metadata and controls
17 lines (17 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject hello-clojure "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
: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.10.1"]
[ring/ring-core "1.8.1"]
[ring/ring-defaults "0.3.2"]
[ring/ring-jetty-adapter "1.8.1"]
[compojure "1.6.2"]
[org.clojure/data.json "1.0.0"]
[org.clojure/java.jdbc "0.7.11"]
[org.postgresql/postgresql "42.2.14"]
[clojure.jdbc/clojure.jdbc-c3p0 "0.3.3"]]
:repl-options {:init-ns hello-clojure.core}
:main hello-clojure.core
:aot [hello-clojure.core])