Abhaydoshi7
- 活动总数 95
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 9
- 订阅数 34
-
创建于 How do I add a library to project, and reuse them in all the required modules ?
已回答I'm having multiple modules and I'm adding the library to a module using the below given snippet to each module one by one. val localFileSystem = LocalFileSystem.getInstance()val moduleRootManager... -
创建于 Icon doesn't load on WelcomeScreen.QuickStart.Platform group
已回答icons class package icons;import com.intellij.openapi.util.IconLoader;import javax.swing.*;public class ClassName { public static final Icon ICON_NAME = IconLoader.getIcon("/icons/icons-main.... -
已编辑于 How do I execute ant target programatically ?
已回答I've gone through AntConfiguration and added an ant build file like below val antConfig = AntConfiguration.getInstance(project)val buildFile = antConfig.addBuildFile(localFileSystem.findFileByIoFi... -
已编辑于 How do I make sure my custom before run task is always ran before the run/debug starts ?
I want a few generated classes to be copied to a specified folder before the main class is ran. I wanted this operation to happen without the plugin users having to configure anything. I've already... -
创建于 Can I ignore java.io.FileNotFoundException: /Users/XXX/YYY/.idea ?
已回答I randomly get this exception when I'm opening a project using my plugin. Should I just ignore this exception ? java.io.FileNotFoundException: /Users/XXX/YYY/.idea at com.intellij.openapi.util.io.F... -
已编辑于 How do I update project settings using project object programatically ?
已回答I'll get an instance of Project object using the below code. val projectManager = ProjectManager.getInstance()val project = projectManager.loadAndOpenProject(homeDirectory.absolutePath) How do I up... -
已编辑于 How do I get default/pre-installed Java SDK for setting as the project SDK programatically?
已回答In short what do I pass for ProjectRootManager.getInstance(project).setProjectSdk(Sdk) -
创建于 How to create the default java module programatically ?
I've successfully created a project and opened it on the IntelliJ editor val projectManager = ProjectManager.getInstance()val project = projectManager.loadAndOpenProject("/Users/X/Work/TestProject... -
创建于 How do I validate fields in ModuleWizardStep/ModuleBuilder like we do in DialogWrapper ?
已回答I've been trying to make a wizard for creating a project using DialogWrapper until now, when I realised we can define a new ModuleBuilder. So I started changing my code to work with ModuleBuilder. ... -
已编辑于 How do I clone git repo using plugin code.
已回答Hi, I'm trying to develop a plugin where source code of a component of project can be automatically cloned and added as a separate module and a dependency to the core module. I have gone through th...