Using JitPack repository #129
JJTech0130
started this conversation in
Ideas
Replies: 2 comments
-
Well, funnily enough, it turns out I don't even need |
Beta Was this translation helpful? Give feedback.
0 replies
-
Ah, thats a nice way to use the latest version without it being released to maven central. I didn't know this, thank you for sharing! I was planning to publish it but I was not able to do it. For the time being you could just use this with the tagged version:
or
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Just posting this here in case anyone else finds it useful:
I wanted to use the latest commit of sslcontext-kickstarter (so that I could use
withUnsafeHostnameVerifier()
), but the maven central version only has tagged commits. The solution I found was to add JitPack:maven("https://jitpack.io")
to the repositories. I could then addimplementation("com.github.Hakky54.sslcontext-kickstart:sslcontext-kickstart:master-SNAPSHOT")
to the dependencies.(I'm using Kotlin DSL, so you might have to adapt it)
Beta Was this translation helpful? Give feedback.
All reactions