-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (15 loc) · 844 Bytes
/
project.clj
File metadata and controls
18 lines (15 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject clj-sql-up "0.4.2"
:description "A simple leiningen plugin for managing sql migrations"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.3"]
[org.clojure/java.jdbc "0.7.12"]
[com.cemerick/pomegranate "1.1.0"]
[org.clojure/java.classpath "1.0.0"]]
:url "https://github.com/ckuttruff/clj-sql-up"
:profiles {:dev {:dependencies [[org.hsqldb/hsqldb "2.6.0"]]}
:test {:test-paths ["target/jar-with-migrations.jar"]}
:test-setup ^:leaky {:resource-paths ["test/test_jar_contents"]
:jar-name "jar-with-migrations.jar"}}
:aliases {"test" ["do" ["with-profile" "test-setup" "jar"] ["test"]]}
:eval-in-leiningen true)