Skip to content

Commit

Permalink
Merge pull request #64 from NOAA-OWP/dependency
Browse files Browse the repository at this point in the history
Fixing transitive dependency issue
  • Loading branch information
epag authored Aug 16, 2024
2 parents b1a52a7 + cfc3e92 commit 4cc1107
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 4cc1107

Please sign in to comment.