You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to import external dependencies into a vscode java project having a module-info.java file and no build tool, causes unresolved errors in the module-info.java file. It seems module-info.class isnt being generated in the output folder.
Adding module-path and reference libraries doesn't seem to help.
Everything works once I remove modules (i.e removing module-info.java) and use only packages in my project.
Environment
Operating System: Linux x86_64
JDK version: 11
Visual Studio Code version: 1.56.2
Java extension version: 0.16.0
Java Debugger extension version: 0.34.0
The text was updated successfully, but these errors were encountered:
You're accessing javafx through module, you can take a look at redhat-developer/vscode-java#881. Looks like you need to use a build tool such as gradle to manage the javafx library as module. You can post more discussion to the duplicated issue redhat-developer/vscode-java#881
[provide a description of the issue]
Trying to import external dependencies into a vscode java project having a
module-info.java
file and no build tool, causes unresolved errors in themodule-info.java
file. It seems module-info.class isnt being generated in the output folder.Adding module-path and reference libraries doesn't seem to help.
Everything works once I remove modules (i.e removing module-info.java) and use only packages in my project.
Environment
The text was updated successfully, but these errors were encountered: