3569cdda38
Before this commit `jps/jps-*/build.gradle.kts` list of dependencies were partially duplicated in the `compilerModulesForJps` Right now, list of all JPS dependencies is the source of truth. Actually, I wish I could it do it the other way around -- let the Gradle do dependency management and correctly produce jars with as less as possible other libraries being embedded, and as much as poosible libraries being just dependencies in the pom.xml. I tried to do so using `embedded` and self-made configurations but desperately failed, because was getting to big `kotlin-jps-plugin-classpath` jar. Probably, what I was getting is a correct classpath, and currently hardcoded classpath may not be correctly full. Well, at least current classpath is time-proven.