gerrit/lib/joda/BUCK
David Pursehouse 71514bca05 Upgrade joda-time to 2.8
2.8 is not the latest (2.8.1) but this is the version used by
Elasticsearch.

Change-Id: If5b488387b1c58d0e3e374dfa6846457d7519475
2015-06-24 14:59:50 +09:00

26 lines
542 B
Python

include_defs('//lib/maven.defs')
EXCLUDE = [
'META-INF/LICENSE.txt',
'META-INF/NOTICE.txt',
]
maven_jar(
name = 'joda-time',
id = 'joda-time:joda-time:2.8',
sha1 = '9f2785d7184b97d005a44241ccaf980f43b9ccdb',
deps = [':joda-convert'],
license = 'Apache2.0',
exclude = EXCLUDE,
visibility = ['PUBLIC'],
)
maven_jar(
name = 'joda-convert',
id = 'org.joda:joda-convert:1.2',
bin_sha1 = '35ec554f0cd00c956cc69051514d9488b1374dec',
license = 'Apache2.0',
exclude = EXCLUDE,
visibility = ['//lib/joda:joda-time'],
)