Skip to content

Commit

Permalink
Fix a missing transitive dependency for a markdown-to-html plugin, #36.
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-brown committed Aug 16, 2024
1 parent 335b811 commit a7180c7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ import java.time.ZoneId

/* Used by gradle plugins outside the official gradle plugins repository */
buildscript {

// Work around for missing transitive dependency for plugin org.kordamp.gradle.markdown
// https://github.com/kordamp/markdown-gradle-plugin/issues/36
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"
}
}
repositories {
mavenCentral()
}
Expand Down

0 comments on commit a7180c7

Please sign in to comment.