forked from otto-de-legacy/lambdacd-lineup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
18 lines (18 loc) · 769 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject lambdacd-lineup "0.5.0"
:description "LambdaCD library to integrate Lineup"
:url "https://github.com/otto-de/lambdacd-lineup"
:license {:name "The MIT License (MIT)"
:url "http://opensource.org/licenses/MIT"}
:scm {:name "git"
:url "https://github.com/otto-de/lambdacd-lineup"}
:test-paths ["test", "example"]
:dependencies [[org.clojure/clojure "1.7.0"]
[lambdacd "0.6.1"]
[lambdacd-artifacts "0.1.0"]
[bouncer "0.3.3"]
[org.clojure/core.incubator "0.1.3"]
[clj-http "2.0.0"]
[clj-http-fake "1.0.1"]]
:profiles {:uberjar {:aot :all}}
:deploy-repositories [["clojars" {:creds :gpg}]]
:main example-pipeline.pipeline)