Not a Kotlin plugin question per se but.. in IJ 20...
# intellij
e
Not a Kotlin plugin question per se but.. in IJ 2023.2 where did the class path settings go?
I ask this because I suspect the cp settings are wrong. Sort of a continuation of the issues I found in https://kotlinlang.slack.com/archives/C0B8H786P/p1688666026984569
I can't find the cp settings under "modify options"
Ahh.. I see what happens
Instead of making a Kotlin runnable it creates a Gradle runnable whenever I press on the play button next to fun main()
s
You can edit the classpath on Gradle side.
(configure it in your buildscript instead)
e
The problem is that running a program from a secondary jvm source set worked before version 1.9.0 of the Kotlin plugin
s
Would you mind sharing your buildscript? You wanted to run your code that is not part of the main compilation and main source set?
e
project is here https://github.com/openrndr/orx, you'll find src/jvmDemos/kotlin directories containing small demos that we used to be able to start from IJ