From 1a58b864dc125e037500d128c8cf3865364ff51e Mon Sep 17 00:00:00 2001 From: Simon Podlipsky Date: Fri, 13 Sep 2024 12:56:12 +0200 Subject: [PATCH] Tmp fix missing remark dep Related to #345 https://github.com/kordamp/markdown-gradle-plugin/issues/36#issuecomment-2277317737 --- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build.gradle b/build.gradle index 0206b65..f77b532 100644 --- a/build.gradle +++ b/build.gradle @@ -1,3 +1,11 @@ +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 'one-dark-theme-plugin' id 'org.jetbrains.intellij' version '1.9.0'