Closed peterbecker closed 5 years ago
Try using latest version like this:
implementation("com.github.zensum:ktor-health-check:011a5a8")
Made a release to bump version on the tag which should clear confusion which version to use.
Cheers - looks good. I didn't realize I could reference by hash.
You can always check Builds or Commits tabs on jitpack.io to see other available builds to use if they are not officially released.
I tried using the only released version on JitPack:
implementation("com.github.zensum:ktor-health-check:legacy-ktor")
, but that seems to fail with ktor 1.1.2 -- but that fails with this in the Gradle build:IntelliJ seems slightly more happy, but complains about the
install(Health)
part with a type mismatch (expectedApplicationFeature<Application, ???, ???>
, foundHealth.Feature
).I suspect the "legacy" in the tag is a giveaway, but I can't see another release. Will I have to build it myself?
Cheers, Peter