microsoft / microsoft/vscode-java-dependency
Support adding folders to referenced libraries
Open
Nobody has claimed this yet.
enhancement
- Dominant language
- TypeScript
- Stars
- 199
- Forks
- 105
- Avg merge
- 1d 22h
- Merged PRs (30d)
- 27
Description
settings.json
{
"java.project.referencedLibraries": [
"lib/**/*.jar",
"D:/WEAVER/ecology/classbean/**/*.class"
]
}
这样的配置无效,或者.classpath里面配置也是不支持的
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="lib" path="D:/WEAVER/ecology/classbean"/>
</classpath>
classbean目录下面有生成的.class文件,比如classbean/com/api/workflow/user.class
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reproducing the configuration shown in settings.json and the .classpath example with generated .class files under classbean. Trace how referenced libraries are read and determine what completion looks like for folder paths; done means both configurations support the folder while preserving the existing JAR and glob behavior.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java, typescript, vscode
- Domain
- build-system, tooling
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100