I have a Maven dependency with <type>jar</type> and <classifier>idl</classifier> but instead of my -idl.jar classes being resolved in vscode, it's actually the classes of the main artifact that are visible. When i build the project with mvn install or w/e on the CLI, it's working correctly.
Environment
- Operating System: openSUSE Leap 42.2
- JDK version: 11.0.8, 2020-07-14
- Visual Studio Code version: 1.50.0, 2020-10-07
- Java extension version: 0.72.0, [2020-12-02]
Steps To Reproduce
- create 2 maven projects
- use some plugin to export a jar with a different classifier (tests for example) in project 1
- import project 1 in project 2 with that classifier
- try to import a class that's only visible in that classifier
I have a Maven dependency with
<type>jar</type>and<classifier>idl</classifier>but instead of my-idl.jarclasses being resolved in vscode, it's actually the classes of the main artifact that are visible. When i build the project withmvn installor w/e on the CLI, it's working correctly.Environment
Steps To Reproduce