-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
19 lines (16 loc) · 853 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject com.mjachimowicz/ragtime-clj "0.1.2"
:description "Extension for ragtime that handles migrations as clj files"
:url "https://github.com/mariusz-jachimowicz-83/ragtime-clj"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0-beta4"]
[ragtime "0.7.2"]]
:deploy-repositories [["clojars" {:sign-releases false}]]
;; lein cloverage --fail-threshold 95
;; lein kibit
;; lein eastwood
:profiles {:dev {:dependencies [[org.clojure/java.jdbc "0.5.8"]
[com.h2database/h2 "1.3.160"]]
:plugins [[lein-cloverage "1.0.10"]
[lein-kibit "0.1.6"]
[jonase/eastwood "0.2.5"]]}})