diff options
author | George Fraser <george@fivetran.com> | 2017-10-15 13:55:45 -0700 |
---|---|---|
committer | George Fraser <george@fivetran.com> | 2017-10-15 13:55:45 -0700 |
commit | 793139af71d0a8fd203e3557fd45f4258153729f (patch) | |
tree | 0241db4bad780a97a435bfab3e65bbc3bc7e1119 /README.md | |
parent | 099b833de918dadc63e6e10828a313b6a154b580 (diff) | |
download | java-language-server-793139af71d0a8fd203e3557fd45f4258153729f.zip |
Allow the user to specify the class path manually
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -72,6 +72,16 @@ you can specify your external dependencies using [.vscode/settings.json](https:/ } ``` +If all else fails, you can specify the java class path manually: + +```json +{ + "java.classPath": [ + "lib/some-dependency.jar" + ] +} +``` + You can generate a list of external dependencies using your build tool: * Maven: `mvn dependency:list` * Gradle: `gradle dependencies` |