DrIgor
08/29/2023, 9:06 PMprepare/ide-plugin-dependencies/
folder but I don't know how to use them in the plugin. I tried publish
and publishToMavenLocal
tasks, but it seems that they don't publish kotlin-*-for-ide
jars to the repo.
I also found plugins/kotlin/util/project-model-updater
script which updates the plugin dependencies but it still need them to published.
Thank youdmitriy.novozhilov
08/30/2023, 7:15 AM/path/to/kotlin/intellij
and checkout branch kt-master
in it
• run following gradle task to publish compiler classes as IDE dependencies
./gradlew publishIdeArtifacts :prepare:ide-plugin-dependencies:kotlin-dist-for-ide:publish -Ppublish.ide.plugin.dependencies=true -PdeployVersion=1.9.255 -Pbuild.number=1.9.255
• open intellij repo in IDEdmitriy.novozhilov
08/30/2023, 7:16 AMkt-master
branch, not master
dmitriy.novozhilov
08/30/2023, 10:51 AMKotlin Coop: Publish compiler-for-ide JARs
run configuration in intellij
repo instead of manual running gradleDrIgor
09/01/2023, 8:11 PMkt-master
branch. Thank you!