-
Notifications
You must be signed in to change notification settings - Fork 413
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
Enhanced Referenced Library Support Proposal #1257
Comments
DiscussionImplement in Server SideAt first, I implemented a prototype for this feature in
However, after the prototype was finished, I found out that it brought me some pains and just kept me away from adopting this choice: (Cons)
Therefore, these issues just blocks my way to use the server side proposal as final proposal. |
DiscussionImplement in Client SideFinally I decided to move fs-related logic to client side, leaving Pros:
Cons:
All above analysis are summarized into following final proposal. |
ProposalHere's the proposal I've worked out until now: Language Server
Language Client
In this way, an entrance to resolving dependencies is established. Then we could decorate it with some upper level UI to make this feature more user friendly, which is a complete client-side issue. Looking for advice within the issue, and from the Monday sync with vscode-java team. |
Introduction
Hello, I am seeking to provide a mechanism for adding external local dependencies to a project in recent days, which solves feature requests like microsoft/vscode-java-pack#94 and microsoft/vscode-java-dependency#174.
This feature would bring some notable benefits:
More friendly to beginners. In my university years, most of my classmates get to study Java with neither Maven nor Gradle, and they were going a clumsy way to resolve dependency: download a fat jar to somewhere even not necessarily in the project, and reference them by IDE.
Eclipse provides
Referenced Library
andUser Library
to deal with it. If editors with language client (e.g. VS Code) could also provide a neat way to introduce local libaries (and help to convert to recommended practices), they would look less dauting to the beginners.Complete a missing piece of project dependency management. There are now good supports for resolving (local) depedencies for Maven and Gradle projects. By adding support for Eclipse-based project, we could group them into a set of comprehensive commands, each command dispatching dependency requests to the handlers according to project types.
In #927, @fbricon introduced automatic detection of jars in
lib/
folder. This is a nice PR, in that it implements a infrastructure (job queue and request merging, etc.) for updating classpathes.However, this feature is somewhat restrictive and hard to get noticed as its logic is implicit. Turning it to a setting would make it more easy to be noticed and managed by users.
So, based on these ideas and previous works, my goal for this feature is to: extend the pre-defined
lib
folder to use an array of glob pattern to define referenced jars.The text was updated successfully, but these errors were encountered: