kordamp / markdown-gradle-plugin

Markdown/HTML plugin for gradle
Apache License 2.0
71 stars 51 forks source link

Remark 1.1.0 isn't available on any repository #36

Open peterfouquet0001 opened 3 months ago

peterfouquet0001 commented 3 months ago

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

timtebeek commented 3 months ago

I'm seeing the same issue here; looks like that library used to be here but is now gone.

Then there was a fork published to bintray & jcenter, also both now gone.

Looks like this might take a bit of archaeology & necromancy to get going again.

aalmiray commented 3 months ago

@timtebeek looks like remark was forked and released but in an incompatible manner https://github.com/kordamp/markdown-gradle-plugin/issues/34#issuecomment-1307141348

azahnen commented 2 months ago

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'
}