-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
22 lines (20 loc) · 895 Bytes
/
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 seql "0.2.4"
:description "schema migrations for the masses"
:url "https://github.com/it0a/seql"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:main seql.core
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/tools.cli "0.3.1"]
[org.clojure/java.jdbc "0.3.7"]
[mysql/mysql-connector-java "5.1.6"]
[pandect "0.5.2"]
[org.clojure/data.codec "0.1.0"]
[crypto-password "0.2.0"]]
:plugins [[lein-bin "0.3.4"]]
:aot [seql.core]
:omit-source true
;; Use `lein deploy` to push to clojars.
:deploy-repositories [["releases" {:url "https://repo.clojars.org" :sign-releases false}]
["snapshots" {:url "https://repo.clojars.org" :sign-releases false}]]
:bin {:name "seql"})