From 1ec6a29d1b6553a9c3ad90232f0ba37f2a05474f Mon Sep 17 00:00:00 2001 From: Ilya Kirillov Date: Mon, 9 Oct 2023 22:51:57 +0200 Subject: [PATCH] [build] fix project names in `sam-with-receiver-compiler-plugin-for-ide` They usually use one `:` --- .../build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/prepare/ide-plugin-dependencies/sam-with-receiver-compiler-plugin-for-ide/build.gradle.kts b/prepare/ide-plugin-dependencies/sam-with-receiver-compiler-plugin-for-ide/build.gradle.kts index cd405de42e1..a6ddfc88d19 100644 --- a/prepare/ide-plugin-dependencies/sam-with-receiver-compiler-plugin-for-ide/build.gradle.kts +++ b/prepare/ide-plugin-dependencies/sam-with-receiver-compiler-plugin-for-ide/build.gradle.kts @@ -4,9 +4,9 @@ plugins { publishJarsForIde( listOf( - "::kotlin-sam-with-receiver-compiler-plugin.cli", - "::kotlin-sam-with-receiver-compiler-plugin.common", - "::kotlin-sam-with-receiver-compiler-plugin.k1", - "::kotlin-sam-with-receiver-compiler-plugin.k2", + ":kotlin-sam-with-receiver-compiler-plugin.cli", + ":kotlin-sam-with-receiver-compiler-plugin.common", + ":kotlin-sam-with-receiver-compiler-plugin.k1", + ":kotlin-sam-with-receiver-compiler-plugin.k2", ) )