b0735a3c02
GWT 2.7 dev JAR no longer lists org.json:json as a dep in its pom.xml file. Instead it requests ow2-asm. Fix the dep list to drop the difficult org.json:json and put in the requested ow2 JARs. Move ow2-asm deps down onto gwt-dev JAR where they belong. These are required by the compiler code inside gwt-dev, not user code linked with gwt_module(). Change-Id: I54df92daf40d77e61bed4ed4b549981e8d798ca1
41 lines
850 B
Python
41 lines
850 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-commons',
|
|
id = 'org.ow2.asm:asm-commons:' + VERSION,
|
|
sha1 = 'a7111830132c7f87d08fe48cb0ca07630f8cb91c',
|
|
deps = [':ow2-asm-tree'],
|
|
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',
|
|
)
|
|
|