PKIX path building failed: ... unable to find valid certification path to requested targetSo it was clear that maven was not passing the SSL system properties from my .mavenrc file:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MAVEN_OPTS="-Djavax.net.ssl.keyStore=<YOU KEYSTORE FILE> \ | |
-Djavax.net.ssl.keyStorePassword=<YOUR KEYSTORE PASSWORD> \ | |
-Djavax.net.ssl.keyStoreType=JKS \ | |
-Djavax.net.ssl.trustStore=<YOUR TRUSTSTORE FILE> \ | |
-Djavax.net.ssl.trustStorePassword=<YOUR TRUSTSTORE PASSWORD> \ | |
-Djavax.net.ssl.trustStoreType=JKS" |
This is what I discovered as I read more the documentation.