My Team and myself working on a spring boot application. Rest of my team is using Intellij Idea, but I am using VS code. The problem is I need to add external jars into my project but I didn't find any option in vscode. The spring boot project is based on maven. I googled and find many people suggesting the option of 'referenced library' to add external jars, But In my case, this option is not there. I have almost every extension installed on my vs code.
My colleagues are able to add these external jars in IntelliJ Idea through -> right-click on jars -> add as library. Is there any option available in case of vs code too.
I also tried to modify the .classpath but it's surprising that the .classpath file is in the project but not visible in the project explorer.
Please suggest what is the way to add external jars as a dependency in a spring boot maven project in vs code.

