I'm new to maven and have an issue downloading a dependency defined in pom.xml into my local respository. All other dependencies defined in pom.xml are downloaded correctly. Also, other dependencies across multiple projects are also working fine. I'm using maven 3.5.2 and aws sdk 1.11.86
The dependency causing problems is an aws redshift driver defined as -
<dependency>
<groupId> com.amazon.redshift</groupId>
<artifactId>redshift-jdbc42</artifactId>
<version>1.1.17.1017</version>
</dependency>
Maven Repository - https://mvnrepository.com/artifact/com.amazon.redshift/redshift-jdbc42/1.1.17.1017
My local repo has the following -
com\amazon\redshift-jdbc4\1.1.17.1017
redshift-jdbc42-1.1.17.1017.jar.lastUpdated
redshift-jdbc42-1.1.17.1017.pom.lastUpdated
I've deleted the local .lastUpdated files, but that doesn't resolve.
Any ideas please?
Thank you in advance.