Where do you find the forms_rt.jar file for intellij

Answered

I keep getting a com.intellij.uiDesigner.core error in my code when I try to compile a gui.

Everyone says to add the forms_rt.jar file but I don't know where that is or how to do that. Can someone please provide detailed instructions? I use a mac.

 
0
4 comments

Hi. This library should be located under <IDEA_Installation_Directory>\libs, add it to the module dependencies as described here: https://www.jetbrains.com/help/idea/working-with-module-dependencies.html

1
Avatar
Permanently deleted user

How would we do that in gradle? (ie. when we delegate the build to gradle, not intellij idea)

 

0

@...

Try the following:

// https://mvnrepository.com/artifact/com.intellij/forms_rt
implementation group: 'com.intellij', name: 'forms_rt', version: '7.0.3'
0

Thats an ancient version.

0

Please sign in to leave a comment.