-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Identify Maven Plugins Goals #126
Comments
I'm not a big designer, but that's what I need, and struggling with on daily basis. Pls. notice there is "tag" button in the search bar, which changes the view between tasks and dependencies. Eclipse and Netbeans has a feature to filtering inside a dependency tree. It's a deal breaker for me to resolve the messy dependency tree. Unfortunately, it's a little bit much on that tiny area. Netbeans has an awful and very slow visual graph solution only, which is not that usable. I would like my little eclipse feature back, pls. i beg you to make it happen. :) For gradle also. The vscode java dependency plugin shows classes inside not showing transitive dependencies. Most of the company sucks on it, and waste the majority of the time to resolve circular dependencies, or excluding older versions as somehow it hasn't been excluded automatically. Good common examples (official documents urges to do that): mysql
jetty
|
@fssrepository I find in IntelliJ IDEA, they show the dependency tree (only including those in compile scope). We can also show a similar tree view in this Maven extension. And currently we just provide data to a tree view, if we want to support searching, we'll have to adopt the following API. I think technically it's feasible. |
Referencing to the previous comment: I have talked about dependency:tree menu item next to the effective pom. It's not a maven plugin responsibility, but to show the following results of the 1-5 section combined in a tree in a filterable way would be a nice robust option:
Filter can be some sort of regex by type - so half regex/half type. For example: |
I'm closing it as the original feature has been implemented. For the dependency tree view feature request, there's already another issue #161 for it, let track it there. |
Currently, the Maven view only lists the well-known Maven goals.
When plugins are added to the
pom.xml
, the View should identify what goals these plugins provide.This is how the view looks like on VS Code:
This is how the view looks like on IntelliJ:
The text was updated successfully, but these errors were encountered: