From bb63cdb8933d0e7a7c81e12a6d9329f96f656921 Mon Sep 17 00:00:00 2001 From: Simon Podlipsky Date: Fri, 20 Sep 2024 00:16:20 +0300 Subject: [PATCH] Tmp fix missing remark dep (#347) 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 f1fd30a..033c0ec 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'