
Modfied lib/maven.defs so that maven_jar() is able to handle snapshot builds. Simplified the implementation of the advance() method in EditIterator. Previously, the method was calling substring() on the lines, which was unnecessary. Change-Id: I3b00caa140539ae77605721d741afae75ae1448e
61 lines
1.3 KiB
Python
61 lines
1.3 KiB
Python
include_defs('//lib/maven.defs')
|
|
|
|
VERSION = '2.5.0'
|
|
|
|
maven_jar(
|
|
name = 'user',
|
|
id = 'com.google.gwt:gwt-user:' + VERSION,
|
|
sha1 = 'bbec0cc2ba81a2601aac55e3783ad0d0ff7d45ac',
|
|
license = 'Apache2.0',
|
|
attach_source = False,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'dev',
|
|
id = 'com.google.gwt:gwt-dev:' + VERSION,
|
|
sha1 = '3c227524e0978036e76e73e125ac8535a9e8fd7c',
|
|
license = 'Apache2.0',
|
|
deps = [
|
|
':javax-validation',
|
|
':javax-validation_src',
|
|
],
|
|
attach_source = False,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'javax-validation',
|
|
id = 'javax.validation:validation-api:1.0.0.GA',
|
|
bin_sha1 = 'b6bd7f9d78f6fdaa3c37dae18a4bd298915f328e',
|
|
src_sha1 = '7a561191db2203550fbfa40d534d4997624cd369',
|
|
license = 'Apache2.0',
|
|
visibility = [],
|
|
)
|
|
|
|
python_binary(
|
|
name = 'compiler',
|
|
main = 'compiler.py',
|
|
visibility = ['PUBLIC'],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'gwt-test-utils',
|
|
id = 'com.googlecode.gwt-test-utils:gwt-test-utils:0.45-SNAPSHOT-20130612.054327-7',
|
|
sha1 = 'ad53b8a05df35fbe394db80d1d7d2913a646bfb3',
|
|
license = 'Apache2.0',
|
|
repository = 'http://oss.sonatype.org/content/repositories/snapshots',
|
|
deps = [
|
|
':javassist',
|
|
'//lib/log:api',
|
|
],
|
|
visibility = ['PUBLIC'],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'javassist',
|
|
id = 'org.javassist:javassist:3.16.1-GA',
|
|
sha1 = '315891b371395271977af518d4db5cee1a0bc9bf',
|
|
license = 'Apache2.0',
|
|
visibility = [],
|
|
)
|
|
|