Intellij Idea 13 UI Designer and automatic Gradle building

后端 未结 4 893
耶瑟儿~
耶瑟儿~ 2020-11-30 10:40

I\'ve used the Intellij UI Designer to create forms for a project. Everything works fine when I\'m building with idea as it handles compiling the forms for me, but as we rec

4条回答
  •  执笔经年
    2020-11-30 11:09

    The forms_rt library is in mavenCentral. http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22forms_rt%22

    Once you have configured IntelliJ to update the SourceCode it is sufficient to just add the library to the dependencies in your build.gradle.

    dependencies {
        compile 'com.intellij:forms_rt:7.0.3'
    }
    

提交回复
热议问题