Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Alexander Bubenchikov
Total activity
38
Last activity
December 18, 2024 15:21
Member since
March 07, 2019 10:52
Following
0 users
Followed by
0 users
Votes
1
Subscriptions
18
Activity overview
Articles (0)
Posts (0)
Comments (19)
Sort by recent activity
Recent activity
Votes
Edited
December 18, 2024 15:21
Answering your direct question:see com.intellij.jarRepository.JarRepositoryManager#chooseLibraryAndDownload implementationhttps://github.com/JetBrains/intellij-community/blob/master/java/idea-ui/s...
Community
IntelliJ IDEA Open API and Plugin Development
How do I create a Maven project library from within an IntelliJ plugin?
0 votes
Created
November 25, 2022 10:46
What exactly classes you want to access? Maven classes are public and accessible, as well as any other files in other plugins.Have you declared maven plugin as a dependency? You can read more about...
Community
IntelliJ IDEA Open API and Plugin Development
Inherit from MavenProjectModelModifier
0 votes
Created
May 25, 2022 10:51
indeed, gradlePluginPortal is not supported yet, thank you. I've created https://youtrack.jetbrains.com/issue/IDEA-294722As a workaround for now, you can use raw dsl elements, something like this: ...
Community
IntelliJ IDEA Open API and Plugin Development
`gradlePluginPortal` missing from RepositoryType in RepositoryModel
0 votes
Created
December 20, 2021 15:02
Adding additional library to module dependency is quite risky, maven plugin does not expect that there will be dependencies other than declared in pom, it could lead to unexpected behaviour. I'd r...
Community
IntelliJ IDEA Open API and Plugin Development
Add maven dependency on the fly?
0 votes
Created
October 05, 2021 08:44
Try to create your own class inherited from `org.jetbrains.idea.maven.importing.MavenImporter` (pass nulls to constructor and override `isApplicable`) and in `process` method add your own postTask ...
Community
IntelliJ IDEA Open API and Plugin Development
Intellij Plugin order of execution with Maven plugin
0 votes
Edited
February 10, 2021 14:21
Hi Vivek12895Idea do not use mvn script to run maven locally, instead it form java command line for maven. This is caused by historic reasons and for proper control of maven lifecycles. You can loo...
Community
IntelliJ IDEA Users
Intellij Maven Isssue, mvn Command is not taken from the right directory
0 votes
Created
January 07, 2021 10:31
Hi Ischa, sorry for long response, Christmas and NY holidays, you know.Unfortunately, there was no way to work with Gradle DSL before 2021.1 in idea, however this support was in Android Studio In 2...
Community
IntelliJ IDEA Open API and Plugin Development
How to get the configuration from Gradle plugin in IntelliJ plugin
0 votes
Created
December 28, 2020 15:36
Hi Dennis. Answering you direct questions:Yes, of course u can create a plugin for this. Please look at documentation https://jetbrains.org/intellij/sdk/docs/basics/basics.html, also see jetbrains...
Community
IntelliJ IDEA Users
Is there a way to automate the setup of IntelliJ projects
0 votes
Created
December 28, 2020 14:46
Does previous version (with unresolved plugins) works from command line? Could you please share version with error too?
Community
IntelliJ IDEA Users
Cannot resolve plugin org.apache.maven.plugins:
0 votes
Edited
September 17, 2020 14:40
1. Use a TaskCallback parameter, start next task onSuccess/onFailure event - pretty common pattern in async programming 2. Not clear for me. Do you want to pass password as a parameter in a command...
Community
IntelliJ IDEA Open API and Plugin Development
Run multiple gradle-tasks via plugin
0 votes
Next
›
Last
»