diff options
author | George Fraser <george@fivetran.com> | 2018-12-28 19:31:38 -0800 |
---|---|---|
committer | George Fraser <george@fivetran.com> | 2018-12-28 19:31:38 -0800 |
commit | 9a02922e98d84bb1ea0b19ff8d2259b5cb7b0e9c (patch) | |
tree | a8621acc6a35e55d33627bb2f77cd85aef358e73 /modules/module-info.java | |
parent | 3bdefe1c30f531c7a646df9b9b14eec232f1fe1b (diff) | |
download | java-language-server-9a02922e98d84bb1ea0b19ff8d2259b5cb7b0e9c.zip |
Use jlink to build self-contained distribution
Diffstat (limited to 'modules/module-info.java')
-rw-r--r-- | modules/module-info.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/module-info.java b/modules/module-info.java new file mode 100644 index 0000000..a95685a --- /dev/null +++ b/modules/module-info.java @@ -0,0 +1,8 @@ +module gson { + exports com.google.gson; + exports com.google.gson.annotations; + exports com.google.gson.reflect; + exports com.google.gson.stream; + + requires java.sql; +} |