Open vguna opened 8 years ago
This was annoying me too. It looks like
org.springframework.build:aws-maven:5.0.0.RELEASE depends on
com.amazonaws:aws-java-sdk:1.7.1 which depends on
joda-time:joda-time of version [2.2,)
Since its a wild card version, it needs to de extra stuff like download maven-metadata.xml from every repo to find the latest version from what I can recall, even if the plugin repo is annotated with <updatePolicy>never</updatePolicy>
. I suspect the solution would be to pin the version of joda-time in org.springframework.build:aws-maven
Hi.
I'm successfully using the aws extension - thanks for that! However what bothers me is, when I add my s3 repository as
<pluginRepository>
as well, the build starts with a warning:Is this a chicken/egg problem? I think it's the aws extension itself that needs joda-time, right? So during init of the extension, it can't access the configured plugin repository due to the not-yet-initialized extension :)?
I'm guessing it since I reduced my pom to only contain the extension and some properties/repo definitions. Can this message somehow be suppressed?