forked from ThoughtWorksInc/lein-s3-static-deploy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
15 lines (15 loc) · 730 Bytes
/
project.clj
File metadata and controls
15 lines (15 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject lein-s3-static-deploy "0.1.1-SNAPSHOT"
:description "Leiningen plugin to deploy static websites"
:url "https://github.com/ThoughtWorksInc/lein-s3-static-deploy"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[clj-aws-s3 "0.3.10" :exclusions [joda-time]]
[joda-time/joda-time "2.9.2"]
[me.kanej/s3-sync "0.4.0"]
[org.clojure/data.json "0.2.6"]
[org.clojure/java.data "0.1.1"]]
:eval-in-leiningen true
:min-lein-version "2.0.0"
:scm {:name "git"
:url "https://github.com/ThoughtWorksInc/lein-s3-static-deploy"})