-
Notifications
You must be signed in to change notification settings - Fork 92
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
Support pom filenames other than pom.xml #316
Labels
Milestone
Comments
Thanks for reporting this, and there are two work items can be formed.
Are you willing to contribute? |
jridgewell
added a commit
to jridgewell/vscode-maven
that referenced
this issue
May 1, 2019
Fixes part 2 of microsoft#316.
jridgewell
added a commit
to jridgewell/vscode-maven
that referenced
this issue
May 1, 2019
Fixes part 1 of microsoft#316.
Great appreciation for your contribution. I'll also enable auto-completion for |
released |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Describe the bug
Closure Complier uses an unusual
pom.xml
hierarchy:The
/externs/pom.xml
project is picked up just fine, but none of the rest are. I think this is because it's only looking for the explicit filename "pom.xml".Further the submodule detection always appends "pom.xml" to the module filepath which generates things like "/pom-min.xml/pom.xml". That's hurts, too.
To Reproduce
Expected behavior
All projects should be detected.
Environments (please complete the following information as much as possible):
Additional context
A configurable pom filename glob would probably fix this. That, and detecting if the module filepath includes an explicit file extension, implying it's a file and not a directory that contains a pom.xml file.
The text was updated successfully, but these errors were encountered: