markdown-gradle-plugin icon indicating copy to clipboard operation
markdown-gradle-plugin copied to clipboard

Remark 1.1.0 isn't available on any repository

Open peterfouquet0001 opened this issue 1 year ago • 3 comments

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

peterfouquet0001 avatar Jul 16 '24 10:07 peterfouquet0001

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 avatar Jul 16 '24 10:07 timtebeek

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

aalmiray avatar Jul 16 '24 10:07 aalmiray

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

azahnen avatar Aug 09 '24 07:08 azahnen