-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 0.1.45 on Maven Central requires JDK 11 #70
Comments
Bummer. That was unexpected, sorry for breaking your builds. I have downgraded 0.1 branch to older gradle, and checked that the publication does not contain |
Joel has removed the |
even after cleaning local caches and running with
|
@ZacSweers Did you clean the respective Does https://repo1.maven.org/maven2/org/jetbrains/markdown/0.1.45/markdown-0.1.45.module return 404 for you? |
It does return a 404 for me, but clearing that directory is not enough for me. Even if I clear all of |
I think the better solution would be to release a new 0.1.46 version to central and update dokka to depend on it. It can be identical in contents (but built for JDK 8), just something to beat the dependency resolution and caching. This would also allow people to easily fix locally without waiting for a dokka update to raise the transitive dependency. |
The 0.1.46 is released, just in case: https://mvnrepository.com/artifact/org.jetbrains/markdown/0.1.46 |
forcing the newer version resolved things for us 👍. Thanks for the quick turnaround on this! |
Similar to this other issue, the latest release of 0.1.45 in Maven Central requires Java11 in its Gradle module file.
This wasn't an issue in the jcenter publication because it was published with a previous version of Gradle and did not include a
.module
file.This will make build fail in setups were Maven Central has a higher precedence than Jcenter and using Java8.
2 possible solutions:
markdown
is included transitively bydokka
so users would have to explicitely upgrademarkdown
but that gives a path forwardThe text was updated successfully, but these errors were encountered: