gerrit/lib/gwt/BUCK
David Pursehouse c3574e99ad Remove gwt-test-utils and disabled tests that depend on it
gwt-test-utils is broken [1] and the tests that depend on it have
been disabled for ages.

It doesn't look like there's going to be any new release of a
fixed version, and since Gerrit is moving away from GWT it's not
worth trying to maintain it ourselves.

Remove the disabled tests, and the dependency to gwt-test-utils.

[1] https://github.com/gwt-test-utils/gwt-test-utils/issues/68

Change-Id: If7ae8d5790146ddfad528a1db2f6f6c3ae497970
2016-02-10 16:48:10 +09:00

31 lines
706 B
Python

include_defs('//lib/maven.defs')
VERSION = '2.7.0'
maven_jar(
name = 'user',
id = 'com.google.gwt:gwt-user:' + VERSION,
sha1 = 'bdc7af42581745d3d79c2efe0b514f432b998a5b',
license = 'Apache2.0',
attach_source = False,
)
maven_jar(
name = 'dev',
id = 'com.google.gwt:gwt-dev:' + VERSION,
sha1 = 'c2c3dd5baf648a0bb199047a818be5e560f48982',
license = 'Apache2.0',
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 = ['PUBLIC'],
)