Hayk Hovhannisyan
- 活动总数 20
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 5
-
创建于 Building plugin through the Gradle Workflow
已回答Dear all, I am developing background plugin for IDEA 2019.2. Following the documentation Building plugins with Gradle. Also as a reference using the examples of plugins. When I am ruining runIde ta... -
已编辑于 Error in buildPlugin execution time
已回答Dears, added log which I see after running buildPlugin gradle task. Please check and confirm that this is the same what have opened as a bug here: https://youtrack.jetbrains.com/issue/IDEA-219599 ... -
创建于 The best way to refresh Virtual FIles
已回答Hi Dears, before I used for refreshing: Objects.requireNonNull(project.getProjectFile()).refresh(false, true); now changed to: VfsUtil.markDirtyAndRefresh(true, true, true, project.getProjectFile()... -
已编辑于 What is the best way to take dependency library in Plugin
已回答Dear all I am developing idea plugin based on Gradle workflow. Have compile time dependency from other libraries in my built.gradle. Want to take that jar file run time and get from there some prop... -
已编辑于 What is the best way for callback when some file changed
已回答Dear all please tell me the best way to handle (callback), when some file changed in project. My current usage like this: public void activateListeners(Project project) { // Project Message Bus ...