Skip to content

Commit

Permalink
Substitute dependency to address issue with missing transitive dep.
Browse files Browse the repository at this point in the history
  • Loading branch information
tychobrailleur committed Aug 10, 2024
1 parent fe6b1ca commit e22015d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ import com.install4j.gradle.Install4jTask
// `./gradlew run` runs HO locally
// `./gradlew tiTree <task>` shows the task graph for the task <task>

// Temporary workaround for #2116
// Thx to https://github.com/kordamp/markdown-gradle-plugin/issues/36#issuecomment-2277317737
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 "java"
id "groovy"
Expand Down

0 comments on commit e22015d

Please sign in to comment.