summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGeorge Fraser <george@fivetran.com>2017-10-15 13:55:45 -0700
committerGeorge Fraser <george@fivetran.com>2017-10-15 13:55:45 -0700
commit793139af71d0a8fd203e3557fd45f4258153729f (patch)
tree0241db4bad780a97a435bfab3e65bbc3bc7e1119 /README.md
parent099b833de918dadc63e6e10828a313b6a154b580 (diff)
downloadjava-language-server-793139af71d0a8fd203e3557fd45f4258153729f.zip
Allow the user to specify the class path manually
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md
index 99c9d8c..e72183c 100644
--- a/README.md
+++ b/README.md
@@ -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`