diff --git a/.gitignore b/.gitignore index 4f2d074..82744c3 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,6 @@ **/.nrepl-port **/profiles.clj **/dev.sh +.lein-failures +target/ +tmp/ diff --git a/lein-s3-sync/project.clj b/lein-s3-sync/project.clj index 3494a3d..dbc156f 100644 --- a/lein-s3-sync/project.clj +++ b/lein-s3-sync/project.clj @@ -1,4 +1,4 @@ -(defproject lein-s3-sync "0.3.0" +(defproject lein-s3-sync "0.4.0-SNAPSHOT" :description "Sync local folders to s3" :url "http://github.com/kanej/lein-s3-sync" :license {:name "Eclipse Public License" diff --git a/project.clj b/project.clj index 2069ab4..34dacac 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject s3-sync "0.3.0-SNAPSHOT" +(defproject s3-sync "0.4.0-SNAPSHOT" :plugins [[lein-sub "0.3.0"]] :sub ["s3-sync" "lein-s3-sync"]) diff --git a/s3-sync/project.clj b/s3-sync/project.clj index 5d03782..827a245 100644 --- a/s3-sync/project.clj +++ b/s3-sync/project.clj @@ -1,4 +1,4 @@ -(defproject me.kanej/s3-sync "0.3.0" +(defproject me.kanej/s3-sync "0.4.0-SNAPSHOT" :description "Library for syncing local folders to s3" :url "http://github.com/kanej/lein-s3-sync" :license {:name "Eclipse Public License" diff --git a/s3-sync/src/me/kanej/s3_sync/s3.clj b/s3-sync/src/me/kanej/s3_sync/s3.clj index 5307e9f..a146aff 100644 --- a/s3-sync/src/me/kanej/s3_sync/s3.clj +++ b/s3-sync/src/me/kanej/s3_sync/s3.clj @@ -35,5 +35,3 @@ (defn put-file [cred bucket-name key file-path] (let [file (clojure.java.io/file file-path)] (s3/put-object cred bucket-name key file))) - -