From 3ca0e11dabb3a3a236e490edf30126194269755b Mon Sep 17 00:00:00 2001 From: Nikita Bobko Date: Thu, 8 Jul 2021 11:39:08 +0200 Subject: [PATCH] Add README to `scripting-ide-common` Originally, we though that we would move classes from `ide-common` from Kotlin plugin to this module but it turns that these classes are heavily used in Kotlin plugin and it's better to keep them with the rest of Kotlin plugin. So now classes in `scripting-ide-common` are copy-pasted --- plugins/scripting/scripting-ide-common/README.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 plugins/scripting/scripting-ide-common/README.md diff --git a/plugins/scripting/scripting-ide-common/README.md b/plugins/scripting/scripting-ide-common/README.md new file mode 100644 index 00000000000..3beebf63a64 --- /dev/null +++ b/plugins/scripting/scripting-ide-common/README.md @@ -0,0 +1,5 @@ +Source code of this module is copy-pasted from https://github.com/JetBrains/intellij-community/tree/master/plugins/kotlin/common +(not the whole module is copy-pasted but only parts which are required for scripting) + +Copy-paste can be avoided by using artifact from https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-ide/org/jetbrains/kotlin/common/ +but we decided that copy-pasting is more appropriate in this situation