I need a HTTPS Maven repository URL for spring source to configure in my pom.xml:
Right now I use the following http urls: http://repository.springsource.com/maven/bundles/release http://repository.springsource.com/maven/bundles/external
I need a HTTPS Maven repository URL for spring source to configure in my pom.xml:
Right now I use the following http urls: http://repository.springsource.com/maven/bundles/release http://repository.springsource.com/maven/bundles/external
Same links like you used just use HTTPS: https://repository.springsource.com/ https://repository.springsource.com/maven/bundles/release https://repository.springsource.com/maven/bundles/external
Added after the comment
You should import the following 3 certificates in the trust store and to configure Java to use it:
Another option to improve security is that you always verify the SHA-1 checksum after you have downloaded a dependency. Maven Central provides Spring artifacts for all released versions, as well as their corresponding SHA-1 checksums, e.g. spring-core:
spring-core-3.2.3.RELEASE.pom 230116bb23132569443ac0479c8ac7e33e9662e7
spring-core-3.2.3.RELEASE.jar accdd65db57e79e49f2af037bb76f5a55a580f00
On Ubuntu, you can use the sha1sum command:
sha1sum spring-core-3.2.3.RELEASE.jar
On Mac you can use the openssl sha1 command:
openssl sha1 spring-core-3.2.3.RELEASE.jar