From 1ad2ed67617146c2730f0fb1bf214620bc218d01 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Wed, 18 Apr 2018 15:36:07 +0300 Subject: [PATCH] Add com.intellij.modules.cidr.lang module dependency for CLion and AppCode Otherwise after removing java dependency it would be possible to install plugin non only in CLion and AppCode, but also in WebStorm, PHPStorm, etc. --- prepare/cidr-plugin/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepare/cidr-plugin/build.gradle.kts b/prepare/cidr-plugin/build.gradle.kts index d5c86c306f3..7d371847b3c 100644 --- a/prepare/cidr-plugin/build.gradle.kts +++ b/prepare/cidr-plugin/build.gradle.kts @@ -43,7 +43,7 @@ val pluginXml by tasks.creating { .matching { include(pluginXmlPath) } .singleFile .readText() - .replace(placeholderRegex, "") + .replace(placeholderRegex, "com.intellij.modules.cidr.lang") .replace(excludeRegex, "") .replace(versionRegex, "$pluginFullVersionNumber") .also { pluginXmlText ->