-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
16 lines (16 loc) · 863 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject viesti/table-spec "0.1.2-SNAPSHOT"
:description "clojure.spec from SQL schema"
:url "http://github.com/viesti/table-spec"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/java.jdbc "0.7.5"]]
:pedantic? :abort
:profiles {:dev {:source-paths ["dev"]
:repl-options {:init-ns user}
:dependencies [[org.clojure/tools.namespace "0.2.11"]
[org.clojure/test.check "0.9.0"]
[org.postgresql/postgresql "42.1.4"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.18.1"]]}}
:deploy-repositories [["releases" {:url "https://clojars.org/repo/",
:creds :gpg}]])