From 4b12d46bd2d2fd23dae6c8e0166bf75f1e795679 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93mar=20Kjartan=20Yasin?= Date: Wed, 14 Oct 2015 10:07:20 -0700 Subject: [PATCH 1/2] Use joda-time 2.8.1 This updates joda-time to version 2.8.1. This is due to a bug in older versions of joda-time which cause it to [break when used with the AWS SDK](https://github.com/aws/aws-sdk-java/issues/484). --- project.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index 490ac14..5ba6b33 100644 --- a/project.clj +++ b/project.clj @@ -1,10 +1,10 @@ -(defproject lein-maven-s3-wagon "0.2.5-SNAPSHOT" +(defproject lein-maven-s3-wagon "0.2.6-SNAPSHOT" :description "A leiningen plugin for publishing to a private S3 maven repository." :url "http://github.com/pjstadig/lein-maven-s3-wagon/" :license {:name "Mozilla Public License, v. 2.0" :url "http://mozilla.org/MPL/2.0/"} - :dependencies [[joda-time "2.2"] + :dependencies [[joda-time "2.8.1"] [pjstadig/maven-s3-wagon "1.3.4" :exclusions [joda-time]]] :repositories [["releases" {:url "https://clojars.org/repo/" :creds :gpg}]] From e760a200da47d3deeed87964a9124f74f24a168b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93mar=20Kjartan=20Yasin?= Date: Wed, 14 Oct 2015 11:06:15 -0700 Subject: [PATCH 2/2] Change version back to 0.2.5-SNAPSHOT @pjstadig asked for the version number to be changed back to 0.2.5-SNAPSHOT. --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 5ba6b33..0a461d2 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject lein-maven-s3-wagon "0.2.6-SNAPSHOT" +(defproject lein-maven-s3-wagon "0.2.5-SNAPSHOT" :description "A leiningen plugin for publishing to a private S3 maven repository." :url "http://github.com/pjstadig/lein-maven-s3-wagon/"