-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
22 lines (22 loc) · 1.05 KB
/
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 lambdacd-mongodb "2.0.1-SNAPSHOT"
:description "LambdaCD extension which lets you use a MongoDB to persist the state of pipelines"
:url "https://github.com/SimonMonecke/lambdacd-mongodb"
:license {:name "The MIT License (MIT)"
:url "http://opensource.org/licenses/MIT"}
:scm {:name "git"
:url "https://github.com/SimonMonecke/lambdacd-mongodb.git"}
:dependencies [[lambdacd "0.11.0"]
[ring-server "0.4.0"]
[org.clojure/clojure "1.8.0"]
[org.clojure/tools.logging "0.3.1"]
[org.slf4j/slf4j-api "1.7.21"]
[ch.qos.logback/logback-core "1.1.7"]
[ch.qos.logback/logback-classic "1.1.7"]
[com.novemberain/monger "3.0.2"]
[com.rpl/specter "0.10.0"]]
:test-paths ["test", "example"]
:uberjar-exclusions [#"logback.xml"]
:jar-exclusions [#"logback.xml"]
:profiles {:uberjar {:aot :all}
:test {:dependencies [[com.github.fakemongo/fongo "2.0.10"]]}}
:main example-pipeline.pipeline)