
a283507bccbd408540ae1baf75eb80eb59dce031 disabled EditIteratorTest due to gwt-test-utils uncompatibility with new GWT 2.6 release. After fixing the compatibility problem in [1] the tests can be enabled again. [1] https://github.com/gwt-test-utils/gwt-test-utils/issues/62 Change-Id: I1f93e6422a1ae60d66f4d8b4abac23b6a1acb4f9
61 lines
1.3 KiB
Python
61 lines
1.3 KiB
Python
include_defs('//lib/maven.defs')
|
|
|
|
VERSION = '2.6.0'
|
|
|
|
maven_jar(
|
|
name = 'user',
|
|
id = 'com.google.gwt:gwt-user:' + VERSION,
|
|
sha1 = '8237d1bd37127188107388c8724be44a0e9f73ca',
|
|
license = 'Apache2.0',
|
|
attach_source = False,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'dev',
|
|
id = 'com.google.gwt:gwt-dev:' + VERSION,
|
|
sha1 = 'af3d9ad2fb8be30dc87fdcd6d9a373b2ab675802',
|
|
license = 'Apache2.0',
|
|
deps = [
|
|
':javax-validation',
|
|
':javax-validation_src',
|
|
],
|
|
attach_source = False,
|
|
exclude = ['org/eclipse/jetty/*'],
|
|
)
|
|
|
|
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.47',
|
|
sha1 = '284749ed37d8034bac05e374070c09cce88db540',
|
|
license = 'Apache2.0',
|
|
deps = [
|
|
':javassist',
|
|
'//lib/log:api',
|
|
],
|
|
visibility = ['PUBLIC'],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'javassist',
|
|
id = 'org.javassist:javassist:3.18.1-GA',
|
|
sha1 = 'd9a09f7732226af26bf99f19e2cffe0ae219db5b',
|
|
license = 'Apache2.0',
|
|
visibility = [],
|
|
)
|
|
|