Build 3200 - missing com.intellij.idea.IdeaLogger class?
I was able to run plugin tests using Idea's test framework in build 3185. Now in build 3200 I get the following exception:
Where is this new class com.intellij.idea.IdeaLogger? Or is there some property file that needs to change?
Thanks,
-Dave
Please sign in to leave a comment.
It's not in lib/idea.jar, where the other com.intellij.idea package classes can be found.
Still missing in 3229
With build 3229 I have all the classes I need to do framework testing.
IdeaLogger class is in lib/idea.jar.
However, I did have to make a change to the JVM's boot classpath. "boot.jar" contains java.lang.StringFactory and java.lang.SimpleIterator. In order to make these available, I added the following line to "VM Parameters" in the configuration:
I also had to add lib/commons-collections.jar to the big list of .jar files I used for build 3200.
-Dave
I trusted IDEA's automatic IDEA SDK creation process to add all the
requested lib/*.jars, but those two were missing.
Posted as a bug:
"idea.jar and commons-collections.jar are missing from IntelliJ SDK"
http://www.jetbrains.net/jira/browse/IDEA-635
>However, I did have to make a change to the JVM's boot classpath. "boot.jar" contains java.lang.StringFactory and java.lang.SimpleIterator.
>
I didn't need it, as I use IntelliJ SDK, and not plain SDK.
Alain