Syd
Syd

Reputation: 1

Server Authentication failed (SVN / Jenkins) Maven release

I have an issue when releasing builds for a newly configured Jenkins. Whenever a SVN Commit is issued, it runs into an error for "Server verification failed: issuer is not trusted"

I have tried the multiple methods of svn checkout, svn list, etc. and to permanently accept the certificate information (fingerprint), but to no avail..

Is there something else I can do or I can allow, without compromising on security by disabling ssl?

Any help is appreciated. Thank you.

Upvotes: 0

Views: 245

Answers (1)

Matt Pavlovich
Matt Pavlovich

Reputation: 4316

This sounds like a self-signed CA certificate is in use. Add the self-signed CA certificate to the Jenkin's JDK and the JDK used by the build. $JAVA_HOME/jre/lib/security/cacerts

Add CA to JDK cacerts file

Upvotes: 1

Related Questions