lamon

Results 1 comments of lamon

This worked for me: ``` def http = new HTTPBuilder(baseUrl) SSLContext ctx = SSLContext.getInstance("TLSv1.2") ctx.init(null, null, null) def scheme = new Scheme("https", 443, new SSLSocketFactory(ctx)) http.client.connectionManager.schemeRegistry.register(scheme) ``` Hope it helps...