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
This commit is contained in:
Nikita Bobko
2021-07-08 11:39:08 +02:00
committed by Space
parent e32a975814
commit 3ca0e11dab
@@ -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