Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Dmitry Kichinsky
Total activity
9
Last activity
January 31, 2024 15:52
Member since
August 10, 2023 11:30
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
3
Activity overview
Articles (0)
Posts (0)
Comments (6)
Sort by recent activity
Recent activity
Votes
Edited
January 31, 2024 15:52
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...
Community
IntelliJ IDEA Open API and Plugin Development
Reading Bundled Maven version
0 votes
Edited
January 30, 2024 10:26
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...
Community
IntelliJ IDEA Open API and Plugin Development
Reading Bundled Maven version
0 votes
Edited
January 29, 2024 11:31
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 ...
Community
IntelliJ IDEA Open API and Plugin Development
Reading Bundled Maven version
0 votes
Created
September 18, 2023 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...
Community
IntelliJ IDEA Open API and Plugin Development
org.jetbrains.idea.maven.project.MavenProjectsManager#scheduleArtifactsDownloading is gone
0 votes
Edited
August 10, 2023 13:30
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...
Community
IntelliJ IDEA Open API and Plugin Development
Find maven dependencies programatically
0 votes
Created
August 10, 2023 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...
Community
IntelliJ IDEA Open API and Plugin Development
Find maven dependencies programatically
0 votes