-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (18 loc) · 830 Bytes
/
project.clj
File metadata and controls
18 lines (18 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject quartzite-test "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:main quartzite-test.core
:aot [quartzite-test.MyDynamicClassLoader]
:dependencies [[org.clojure/clojure "1.8.0"]
[clojurewerkz/quartzite "2.0.0"]
[org.slf4j/slf4j-api "1.7.22"]
[org.slf4j/slf4j-log4j12 "1.7.22"]
[org.postgresql/postgresql "9.4.1212.jre7"]
[ragtime "0.6.3"]]
:plugins [[lein-postgres "0.1.1"]]
:postgres {:port 12345
:clean-data-directory true}
:aliases {"migrate" ["run" "-m" "quartzite-test.core/migrate"]
"rollback" ["run" "-m" "quartzite-test.core/rollback"]})