diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2020-05-18 12:09:03 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2020-05-27 11:40:40 +0200 |
commit | 89cb33dde0c4cd27ca05e31ddea94b7129bc6ebb (patch) | |
tree | 2d894be3cd27e4fee01dc04f5f0451f36492faba /ridljar/source/libreoffice | |
parent | 941b567a41569260fef14a7337511e8f42337323 (diff) |
tdf#131572 Add java 9 module info for unoloader.jar
Add a java module named "org.libreoffice.unoloader" for this jar.
Require this module from org.libreoffice.uno
(libreoffice.jar has unoloader.jar in its classpath,
so add the same dependency to the modules)
Change-Id: I7471d65ac7a0d2c6a11c002027a21f0c441dd1f2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94419
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'ridljar/source/libreoffice')
-rw-r--r-- | ridljar/source/libreoffice/module-info.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ridljar/source/libreoffice/module-info.java b/ridljar/source/libreoffice/module-info.java index 4399586fc558..8d24c7ccb13c 100644 --- a/ridljar/source/libreoffice/module-info.java +++ b/ridljar/source/libreoffice/module-info.java @@ -8,6 +8,8 @@ module org.libreoffice.uno { + requires org.libreoffice.unoloader; + exports com.sun.star.accessibility; exports com.sun.star.animations; exports com.sun.star.auth; |