ea8d6cd596
Sinceae855bf481
and35518c9236
the ridl,jurt und unoil jars were merged into libreoffice.jar. Adapt the buck build correspondingly. Preserve the publishing of merged jars for now with dummy content and consider to remove them in future releases. Test Plan: 1. To replace version number with upcoming release version: $ solenv/bin/version.py 7.1.0 2. To install the API to local Maven repository: $ VERBOSE=1 buck build api_install 3. To deploy the API to Maven Central: $ VERBOSE=1 buck build api_deploy Change-Id: Id1b2135682ab962c901b944f3c26aeead9a4b19b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93724 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
22 lines
362 B
Text
22 lines
362 B
Text
|
|
java_sources(
|
|
name = 'officebean-src',
|
|
srcs = glob(['com/**']),
|
|
root = '.',
|
|
visibility = ['PUBLIC'],
|
|
)
|
|
|
|
java_doc(
|
|
name = 'officebean-javadoc',
|
|
title = 'LibreOffice API',
|
|
pkgs = [
|
|
'com.sun.star.comp.beans',
|
|
],
|
|
paths = ['.'],
|
|
srcs = glob(['com/**']),
|
|
deps = [
|
|
'//:libreoffice',
|
|
'//:officebean',
|
|
],
|
|
visibility = ['PUBLIC'],
|
|
)
|