主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Dmitry Kichinsky
活动总数
11
最后的活动
2025年01月02日 11:15
成员加入日期
2023年08月10日 11:30
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
4
活动概览
文章(0)
帖子(0)
评论(7)
Dmitry Kichinsky
进行了评论,
2025年01月02日 11:14
Hi Octavio, Are you using some IntelliJ IDEA API methods that worked before, but stopped working in 2024.3? If so, please let us know which. You could try org.jetbrains.idea.maven.server.MavenEmbed...
社区
IntelliJ IDEA Open API and Plugin Development
Maven Resolver Issue with Transitive Dependencies in Plugin Development After Update 2024.3
0 票
Dmitry Kichinsky
进行了评论,
2024年01月31日 15:51
MavenUtil code changed over time, here are the versions for 2023.1, 2023.2, 2023.3 (231, 232, 233 branches respectively)https://github.com/JetBrains/intellij-community/blob/231/plugins/maven/src/ma...
社区
IntelliJ IDEA Open API and Plugin Development
Reading Bundled Maven version
0 票
Dmitry Kichinsky
进行了评论,
2024年01月30日 10:25
Sophia73583 , would this method work for you?org.jetbrains.idea.maven.utils.MavenUtil#getMavenVersion(com.intellij.openapi.project.Project, java.lang.String)Here is its implementation: public stati...
社区
IntelliJ IDEA Open API and Plugin Development
Reading Bundled Maven version
0 票
Dmitry Kichinsky
进行了评论,
2024年01月29日 11:28
Hi Sophia73583 ,The code will depend on the IntelliJ version that you create a plugin for. The API has changed over time. In the latest versions (where getMavenHomeType() is available), please use ...
社区
IntelliJ IDEA Open API and Plugin Development
Reading Bundled Maven version
0 票
Dmitry Kichinsky
进行了评论,
2023年09月18日 09:12
Yes, downloadArtifacts is the right method to use. It is a kotlin suspend function, but you can call it from java code too. Please let me know if something along these lines would work for you:publ...
社区
IntelliJ IDEA Open API and Plugin Development
org.jetbrains.idea.maven.project.MavenProjectsManager#scheduleArtifactsDownloading is gone
0 票
Dmitry Kichinsky
进行了评论,
2023年08月10日 13:23
So the question is about resolving references in code in IDEA editor? Let's take the same example "Project A depends on Project B, Project B depends on Project C", but consider java language.Projec...
社区
IntelliJ IDEA Open API and Plugin Development
Find maven dependencies programatically
0 票
Dmitry Kichinsky
进行了评论,
2023年08月10日 11:30
Dobra101, would something along these lines be helpful to you? This code communicates with a Maven server to determine the dependencies of a specified POM file. While it takes some shortcuts, it ca...
社区
IntelliJ IDEA Open API and Plugin Development
Find maven dependencies programatically
0 票