From 0f390cb64c2ee26dda26512665f1f0ec3b739575 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Fri, 7 Jan 2011 09:04:28 -0800 Subject: [PATCH] Upgrade to JavaMail 1.4.3 Requires addition of java.net repository, as 1.4.3 is not available from Maven Central (whereas 1.4.1 was). --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 9403904872..f486cc1a61 100644 --- a/build.gradle +++ b/build.gradle @@ -68,6 +68,7 @@ allprojects { mavenRepo urls: 'http://repository.springsource.com/maven/bundles/external' mavenRepo urls: 'http://repository.springsource.com/maven/bundles/release' mavenRepo urls: 'http://repository.springsource.com/maven/bundles/milestone' + mavenRepo urls: 'http://download.java.net/maven/2' // for javax.mail 1.4.3 } } @@ -308,7 +309,7 @@ project('spring-integration-mail') { dependencies { compile project(":spring-integration-core") compile "org.springframework:spring-context-support:$springVersion" - compile("javax.mail:mail:1.4.1") { provided = true } + compile("javax.mail:mail:1.4.3") { provided = true } compile("javax.activation:activation:$javaxActivationVersion") { optional = true } testCompile project(":spring-integration-test") }