forked from prepor/twarc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
18 lines (18 loc) · 965 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject twarc "0.1.10-SNAPSHOT"
:description "Doing Quartz the right way"
:url "https://github.com/prepor/twarc"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.quartz-scheduler/quartz "2.2.1"]
[org.quartz-scheduler/quartz-jobs "2.2.1"]
[org.clojure/tools.logging "0.3.1"]
[com.stuartsierra/component "0.2.2"]
[prismatic/plumbing "0.5.3"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]]
:javac-options ["-source" "1.6" "-target" "1.6" "-g"]
:java-source-paths ["java"]
:deploy-repositories [["releases" :clojars]]
:profiles {:dev {:dependencies [[org.slf4j/slf4j-api "1.7.7"]
[ch.qos.logback/logback-classic "1.1.2"]
[org.postgresql/postgresql "9.3-1102-jdbc41"]]}})