markdown-gradle-plugin
markdown-gradle-plugin copied to clipboard
Remark 1.1.0 isn't available on any repository
Hi, the library remark-1.1.0.jar is required by the gradle plugin org.kordamp.gradle.markdown, but the library isn't available on any repository anymore.
Could not find remark-1.1.0.jar (com.overzealous:remark:1.1.0). Searched in the following locations: https://plugins.gradle.org/m2/com/overzealous/remark/1.1.0/remark-1.1.0.jar
Please provide the library on maven central or an other repository.
Kind regards Peter
I'm seeing the same issue here; looks like that library used to be here but is now gone.
- https://bitbucket.org/OverZealous/remark
Then there was a fork published to bintray & jcenter, also both now gone.
- https://github.com/giflw/remark-java/releases/tag/v1.1.0
Looks like this might take a bit of archaeology & necromancy to get going again.
- https://github.com/giflw/remark-java/issues/19
@timtebeek looks like remark was forked and released but in an incompatible manner https://github.com/kordamp/markdown-gradle-plugin/issues/34#issuecomment-1307141348
I found a fork that seems to be maintained: https://github.com/wavefrontHQ/remark-java
It works just fine in my project when using Gradle dependency substitution rules to replace the old dependency:
buildscript {
configurations.all {
resolutionStrategy.dependencySubstitution {
substitute module("com.overzealous:remark:1.1.0") using module("com.wavefront:remark:2023-07.07") because "not available on maven central anymore"
}
}
}
plugins {
id 'org.kordamp.gradle.markdown' version '2.2.0'
}