Alexandr Danchenko
Java/Kotlin developer
- Total activity 181
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 12
- Subscriptions 55
-
Created Show custom message in case plugin version is incompatible with IntelliJ version
AnsweredHello, Is it possible to show a custom message in case if the plugin version is incompatible with the IntelliJ version? For example, show compatible versions. For example, this screenshot is ma... -
Created Navigate to Gradle dependencies programmatically
AnsweredHello, In our plugin, I need to open the Gradle dependencies programmatically. For example, we use the next source code to open Maven dependencies val file = mavenProject.getFileval artifact = ma... -
Created Gradle unit test error: "Unknown command-line option '--recompile-scripts'"
AnsweredHello, I'm working on unit tests for our project with Gradle functionality. For correct tests, I need to import the Gradle project and get dependencies from the project. But I'm stuck with this e... -
Created JDK setup in unit tests produce "File accessed outside allowed roots" error
AnsweredHello, I'm making a unit test with Gradle functionality for our project. For this, I used IntelliJ Community sources as an example, but getting an error. File accessed outside allowed roots: fi... -
Created Open Maven project in LightPlatformCodeInsightFixtureTestCase
AnsweredHello, I'm trying to make a test for my plugin. My plugin works with Maven pom.xml dependencies. As I understand for test plugin functionality I need to open or import the Maven project in the te... -
Created Right test case class for plugin (UsefulTestCase type or other)
AnsweredHello, I'm working on the plugin which works with Maven and Gradle dependencies. Our plugin loads dependencies and processes them. I need to write test cases for this plugin. In IntelliJ sourc... -
Created Run a command-line command in plugin
AnsweredHello, I need to run a command-line command in my plugin and get results. Could somebody direct me on how to implement this logic? Which classes to use? Thank you! Alex. -
Created Get Gradle project information in plugin
AnsweredHello, Maybe someone can help with the next questions: 1. In my plugin, I need to check is a project is a Gradle project. 2. If it's Gradle project plugin need to get all Gradle dependencies. 3... -
Created com.intellij.icons.AllIcons will be removed in IntelliJ Platform 2020.1. Where to find new?
AnsweredHello, Can somebody help me with the next issue? We received an email from JetBrains with the next message: "We have noticed that your plugin uses classes from com.intellij.icons.AllIcons, which ... -
Created Maven pom.xml changed events listener
AnsweredHello, I'm working plugin which should listen to changes in pom.xml and analyze changes in dependencies. At the current moment, we use for this projectsManager = MavenProjectsManager.getInstan...