Skip to content

Instantly share code, notes, and snippets.

@wjlroe
Created August 5, 2011 09:39
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save wjlroe/1127209 to your computer and use it in GitHub Desktop.
SSL options for Leiningen
(defn set-ssl
[task & args]
(do
(System/setProperty "javax.net.ssl.trustStoreProvider" "Apple")
(System/setProperty "javax.net.ssl.trustStoreType" "KeychainStore")
(System/setProperty "javax.net.debug" "all")))
(def settings {:hooks [set-ssl]})
@wjlroe
Copy link
Author

wjlroe commented Aug 5, 2011

 Warning: problem requiring #<user$set_ssl user$set_ssl@63d87b85> hook: nth not supported on this type: user$set_ssl

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment