5f5c792ec3
5.x release added support for Java 8 and fixed some bugs: [1]. [1] http://forge.ow2.org/forum/forum.php?forum_id=2302 Change-Id: If5009c676e76bfd420d71a710157e57be0c1511a
33 lines
663 B
Python
33 lines
663 B
Python
include_defs('//lib/maven.defs')
|
|
|
|
VERSION = '5.0.3'
|
|
|
|
maven_jar(
|
|
name = 'ow2-asm',
|
|
id = 'org.ow2.asm:asm:' + VERSION,
|
|
sha1 = 'dcc2193db20e19e1feca8b1240dbbc4e190824fa',
|
|
license = 'ow2',
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'ow2-asm-analysis',
|
|
id = 'org.ow2.asm:asm-analysis:' + VERSION,
|
|
sha1 = 'c7126aded0e8e13fed5f913559a0dd7b770a10f3',
|
|
license = 'ow2',
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'ow2-asm-tree',
|
|
id = 'org.ow2.asm:asm-tree:' + VERSION,
|
|
sha1 = '287749b48ba7162fb67c93a026d690b29f410bed',
|
|
license = 'ow2',
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'ow2-asm-util',
|
|
id = 'org.ow2.asm:asm-util:' + VERSION,
|
|
sha1 = '1512e5571325854b05fb1efce1db75fcced54389',
|
|
license = 'ow2',
|
|
)
|
|
|