Alexandr Danchenko
Java/Kotlin developer
- 活动总数 181
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 1 名用户
- 投票数 12
- 订阅数 55
-
创建于 Icons from jetbrains.design/intellij/resources/icons_list for light and dark mode
已回答Hello, I need to use a few icons from https://jetbrains.design/intellij/resources/icons_list/. On this page, I see light and dark mode. This light or dark mode does it affect the icon? Icon color... -
创建于 The right approach to work with Optional Plugin Dependencies
已回答Hello, I want to use optional plugin dependencies in the plugin. So far it's done like this In plugin.xml <depends optional="true" config-file="my-plugin-maven.xml">org.jetbrains.idea.maven</de... -
创建于 java.lang.Throwable: Icon cannot be found in SomePluginNameIcons
已回答Hello, I want to replace <toolWindow id="SomePluginName"anchor="bottom"icon="/icons/toolWindowIcon.svg"factoryClass="io.ui.toolwindow.SomePluginNameToolWindowFactory"/> to <toolWindow id="Some... -
创建于 Use MavenRunner and get result (exit code)
已回答Hello, I need to run "mvn install". For this I use the next code: val projectsManager = MavenProjectsManager.getInstance(project)val explicitProfiles = projectsManager.getExplicitProfilesval mavenP... -
创建于 Scheduling tasks to run at regular intervals in DAYS
已回答Hello, As I understand I can use AppExecutorUtil.getAppScheduledExecutorService for scheduling tasks at regular intervals. But Can I use it if intervals must be in DAYS? Or for this case, I need ... -
创建于 How to check is project is NPM type
已回答Hello, Are there IntelliJ APIs to identify if the project is NPM type? For example, for Maven I use MavenProjectsManager.getInstance(project).getRootProjects And for Gradle I use GradleSetting... -
创建于 Maven, Gradle, NPM support for IntelliJ Idea and PyCharm plugin.
已回答Hello, I'm working on the plugin that uses Maven and Gradle dependencies. Now I want to add support for npm and also use this plugin in PyCharm (for example). Should I make a separate version of th... -
创建于 Run npm and npm installed apps in console via ScriptRunnerUtil on Windows OS
已回答Hello, I'm trying to run a console command from the plugin via ScriptRunnerUtil class. This command (application) was installed via npm. For this, I'm using similar code val generalCommandLine ... -
创建于 Deprecated API usage and new IntelliJ versions
已回答Hello, First of all, I am grateful for any help and your valuable time! We upload our plugin to plugins.jetbrains.com and received verification results from Jetbrains: Build of the IDE: IU-201.... -
创建于 Handle project resolved event in MavenProjectsManager.Listener
Hello, In our project, we need to handle maven resolved events. We implemented MavenProjectsManager.Listener for 191 IntelliJ version and it works well. To understand that the event is completed,...