Egor K Kulikov
- Total activity 15
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 6
-
Created RunWriteCommandAction and suspend functions
AnsweredSome methods from the IntelliJ Platform require wrapping them in runWriteCommandAction.This also means that an undo/redo action will be created for them. I need to create several such operations in... -
Created Inherit from MavenProjectModelModifier
AnsweredHello! I need to write a custom implementation of selectVersion method of MavenProjectModelModifier (with a custom implementation of calling public method, of course). I manage to inherit from Ide... -
Created Install dependency into Gradle project with disabled Android plugin programmatically
AnsweredHello! Sometimes I need to install a dependency into user project programmatically. I use the inheritors of JavaProjectModelModifier for that, method addExternalLibraryDependency. In most cases And... -
Created Enable Gradle native support programmatically
AnsweredI have an ability to add dependency on test framework library programmatically: I need to call JavaProjectModelModificationService.addDependency method with framework library descriptors for it. Af... -
Created Create resources root in a module and add new file
AnsweredI need to add a special resources file to a user project (for example, MockMaker file from this tutorial https://javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/Mockito.html#39) So I h... -
Created Configuring Kotlin JVM target platform via Intellij Plugin
AnsweredKotlin in user projects may be configured with target platform JVM 1.6. My plugin sometimes requires Kotlin configured for 1.8 target. I would like to inform the user that current settings do not s...