84064031f2
2.7 is the latest version. There's nothing specific that we need in this version right now, but it will be needed later for Elasticsearch and it doesn't hurt to upgrade already. Change-Id: I15fa7d93cceb436724e993c5865de1f46487c91c
26 lines
542 B
Python
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.7',
|
|
sha1 = '5599707a3eaad13e889f691b3af78c8c03842195',
|
|
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'],
|
|
)
|