redhat-developer / redhat-developer/vscode-java
bootstrapClasspath not working
Open
@snjeza is already working on this.
Since Jan 17, 2019.
compile
Gradle
upstream
- Dominant language
- TypeScript
- Stars
- 2.3k
- Forks
- 546
- Avg merge
- 20h 1m
- Merged PRs (30d)
- 11
Description
I have a gradle project that sets a bootstrapClasspath like so:
tasks.withType(JavaCompile) {
options.bootstrapClasspath = files(project(":haikuRT").tasks["compileJava"].destinationDir, "../lib/nxt/classes.jar")
}
If I do a gradlew build, the project builds without error. However, vscode continues to show compile errors because bootstrapClasspath is not honored. For example, a modification has been made (a method added) to the Thread class however the language server is accessing the Thread class within the JDK.
Environment
- Operating System: Both Windows 10 and OSX 10.12.5
- JDK version: Both 1.8 and 11
- Visual Studio Code version: 1.30.2
- Java extension version: unknown
Steps To Reproduce
- Clone https://github.com/chuckb/haikuVM
- ./gradlew build (note that it builds)
- Observe that the bootstrap subproject has compile errors.
Current Result
Gradle build and vscode show inconsistent results.
Expected Result
vscode should show no compile errors.
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.
Assessment
This issue has not been assessed yet.