主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Alexander Bubenchikov
活动总数
36
最后的活动
2024年03月22日 14:05
成员加入日期
2019年03月07日 10:52
关注
0 名用户
关注者数
0 名用户
投票数
1
订阅数
17
活动概览
文章(0)
帖子(0)
评论(18)
Alexander Bubenchikov
进行了评论,
2022年11月25日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Inherit from MavenProjectModelModifier
0 票
Alexander Bubenchikov
进行了评论,
2022年05月25日 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: ...
社区
IntelliJ IDEA Open API and Plugin Development
`gradlePluginPortal` missing from RepositoryType in RepositoryModel
0 票
Alexander Bubenchikov
进行了评论,
2021年12月20日 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...
社区
IntelliJ IDEA Open API and Plugin Development
Add maven dependency on the fly?
0 票
Alexander Bubenchikov
进行了评论,
2021年10月05日 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 ...
社区
IntelliJ IDEA Open API and Plugin Development
Intellij Plugin order of execution with Maven plugin
0 票
Alexander Bubenchikov
进行了评论,
2021年02月10日 14:19
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...
社区
IntelliJ IDEA Users
Intellij Maven Isssue, mvn Command is not taken from the right directory
0 票
Alexander Bubenchikov
进行了评论,
2021年01月07日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to get the configuration from Gradle plugin in IntelliJ plugin
0 票
Alexander Bubenchikov
进行了评论,
2020年12月28日 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...
社区
IntelliJ IDEA Users
Is there a way to automate the setup of IntelliJ projects
0 票
Alexander Bubenchikov
进行了评论,
2020年12月28日 14:46
Does previous version (with unresolved plugins) works from command line? Could you please share version with error too?
社区
IntelliJ IDEA Users
Cannot resolve plugin org.apache.maven.plugins:
0 票
Alexander Bubenchikov
进行了评论,
2020年09月17日 14:38
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...
社区
IntelliJ IDEA Open API and Plugin Development
Run multiple gradle-tasks via plugin
0 票
Alexander Bubenchikov
进行了评论,
2020年09月08日 16:21
Unfortunately no. Maven plugin, by historic reasons, have another codebase than other build systems. Could you please create a feature request, it is not hard to add support for RunConfigurationExt...
社区
IntelliJ IDEA Open API and Plugin Development
How to include my own RunConfigurationExtension in MavenRunConfiguration?
0 票