diff options
Diffstat (limited to 'javaunohelper/BUCK')
-rw-r--r-- | javaunohelper/BUCK | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/javaunohelper/BUCK b/javaunohelper/BUCK new file mode 100644 index 000000000..7f1120dab --- /dev/null +++ b/javaunohelper/BUCK @@ -0,0 +1,20 @@ + +java_sources( + name = 'juh-src', + srcs = glob(['com/**']), + visibility = ['PUBLIC'], +) + +java_doc( + name = 'juh-javadoc', + title = 'LibreOffice Makes it easier to use UNO with Java', + pkgs = [ + 'com.sun.star', + ], + paths = ['.'], + srcs = glob(['com/**']), + deps = [ + '//:juh', + ], + visibility = ['PUBLIC'], +) |