gerrit/lib/gwt/BUCK
Christian Halstrick ec2adce0b6 Fix version of gwt-test-utils
The SNAPSHOT version 0.45 doesn't exist anymore on the
specified repository. Switch to snapshot version 0.46.

Because of this bug calling "tools/eclipse/project.py"
didn't work properly. You have to delete your
~/.gerritcodereview/buck-cache to see this problem.

Change-Id: Ie249d6aedf30e579c90f3f457807ff84a3bdb110
2013-10-01 16:53:10 +02:00

61 lines
1.3 KiB
Python

include_defs('//lib/maven.defs')
VERSION = '2.5.1'
maven_jar(
name = 'user',
id = 'com.google.gwt:gwt-user:' + VERSION,
sha1 = 'a8afe9b0222db730f4ebd02a1aa329a5395473c5',
license = 'Apache2.0',
attach_source = False,
)
maven_jar(
name = 'dev',
id = 'com.google.gwt:gwt-dev:' + VERSION,
sha1 = 'ba1f05ddd23b51c0d9c813956ca0ea72cb2e7a92',
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.46-SNAPSHOT-20130930.170040-1',
sha1 = 'e8f5bd1b8c75be333da36f41613436a8eb175dad',
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 = [],
)