office-gobmx/bean/BUCK
Rene Engelhard ea8d6cd596 Adapt buck build to jars merged into libreoffice.jar
Since ae855bf481 and
35518c9236 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>
2020-11-30 11:27:47 +01:00

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'],
)