From 89cb33dde0c4cd27ca05e31ddea94b7129bc6ebb Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Mon, 18 May 2020 12:09:03 +0200 Subject: 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 --- ridljar/source/libreoffice/module-info.java | 2 ++ ridljar/source/unoloader/module-info.java | 12 ++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 ridljar/source/unoloader/module-info.java (limited to 'ridljar/source') 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; diff --git a/ridljar/source/unoloader/module-info.java b/ridljar/source/unoloader/module-info.java new file mode 100644 index 000000000000..6eed39c96df4 --- /dev/null +++ b/ridljar/source/unoloader/module-info.java @@ -0,0 +1,12 @@ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +module org.libreoffice.unoloader +{ + exports com.sun.star.lib.unoloader; +} -- cgit