Hi,
Is there any plans to support intellisense/autocomplete on Maven pom.xml files? I love this feature in Netbeans and IntelliJ because it suggests groupId, artifactId and also show available versions.
We have to figure out whether to include this as part of the Java extension or a companion Maven extension
Why not start by working with XSD schemata already linked in all maven poms?
That way we'd have support for about 50% of what pom intellisense would require?
Implementing dynamic intellisense of maven plugin configuration properties is a little more complex, but i'd assume validating and giving intellisense for the core skeleton of the pom using XSD shouldn't be quite that complex a task?
That's the role of an XML language server (i.e nothing specific to Java here). This is out of scope of this extension. That being said, we're also working on a standalone XML language server project :-)
Theres more to POM than just the XML/XSD part though. Is that never going to happen because POMs reside in xml files or what? Package Version intellisense for example would be really nice.
FYI our VS Code XML extension is live at https://marketplace.visualstudio.com/items?itemName=redhat.vscode-xml (and it works pretty well for an alpha release). Doesn't have any actual Maven related stuff (dependency completion), but has XSD support, formatting, autocompletion (for schema related stuff) and more.
@eskibear please consider add support to provide auto-completion for dependencies.
FYI the dependency completion feature has been shipped with the Maven extension, including snippets and groupId/artifactId/version suggestions. See below

Most helpful comment
FYI the dependency completion feature has been shipped with the Maven extension, including snippets and groupId/artifactId/version suggestions. See below