Files
gerrit/lib/jsoup/BUCK
Patrick Hiesel ced85a98fa Add jsoup to Buck and Bazel
This library will be used for parsing incoming HTML emails and ingest
comments into Gerrit.

Change-Id: I3ccfd231ad36a8da94172bb32cbf979bafc914b5
2016-11-16 01:24:59 +00:00

21 lines
370 B
Python

include_defs('//lib/maven.defs')
VERSION = '1.9.2'
java_library(
name = 'jsoup',
exported_deps = [
':jsoup_library',
],
visibility = ['PUBLIC'],
)
maven_jar(
name = 'jsoup_library',
id = 'org.jsoup:jsoup:' + VERSION,
sha1 = '5e3bda828a80c7a21dfbe2308d1755759c2fd7b4',
license = 'jsoup',
exclude_java_sources = True,
visibility = ['PUBLIC'],
)