Alexandr Danchenko
Java/Kotlin developer
- Total activity 181
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 12
- Subscriptions 55
-
Created Icons from jetbrains.design/intellij/resources/icons_list for light and dark mode
AnsweredHello, 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... -
Created The right approach to work with Optional Plugin Dependencies
AnsweredHello, 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... -
Created java.lang.Throwable: Icon cannot be found in SomePluginNameIcons
AnsweredHello, I want to replace <toolWindow id="SomePluginName"anchor="bottom"icon="/icons/toolWindowIcon.svg"factoryClass="io.ui.toolwindow.SomePluginNameToolWindowFactory"/> to <toolWindow id="Some... -
Created Use MavenRunner and get result (exit code)
AnsweredHello, I need to run "mvn install". For this I use the next code: val projectsManager = MavenProjectsManager.getInstance(project)val explicitProfiles = projectsManager.getExplicitProfilesval mavenP... -
Created Scheduling tasks to run at regular intervals in DAYS
AnsweredHello, 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 ... -
Created How to check is project is NPM type
AnsweredHello, 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... -
Created Maven, Gradle, NPM support for IntelliJ Idea and PyCharm plugin.
AnsweredHello, 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... -
Created Run npm and npm installed apps in console via ScriptRunnerUtil on Windows OS
AnsweredHello, 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 ... -
Created Deprecated API usage and new IntelliJ versions
AnsweredHello, 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.... -
Created 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,...